Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/org.eclipse.etrice.runtime.cpp/src/common/modelbase/SubSystemRunnerBase.h')
-rw-r--r--runtime/org.eclipse.etrice.runtime.cpp/src/common/modelbase/SubSystemRunnerBase.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/org.eclipse.etrice.runtime.cpp/src/common/modelbase/SubSystemRunnerBase.h b/runtime/org.eclipse.etrice.runtime.cpp/src/common/modelbase/SubSystemRunnerBase.h
index 156f1d096..89e44f535 100644
--- a/runtime/org.eclipse.etrice.runtime.cpp/src/common/modelbase/SubSystemRunnerBase.h
+++ b/runtime/org.eclipse.etrice.runtime.cpp/src/common/modelbase/SubSystemRunnerBase.h
@@ -13,7 +13,7 @@
#ifndef SUBSYSTEMRUNNERBASE_H_
#define SUBSYSTEMRUNNERBASE_H_
-#include <string>
+#include "common/containers/String.h"
namespace etRuntime {
@@ -33,8 +33,8 @@ protected:
static void waitForQuit();
private:
- static const std::string OPTION_RUN_AS_TEST;
- static const std::string OPTION_RUN_HEADLESS;
+ static const String OPTION_RUN_AS_TEST;
+ static const String OPTION_RUN_HEADLESS;
SubSystemRunnerBase(SubSystemRunnerBase const&);
SubSystemRunnerBase& operator=(SubSystemRunnerBase const&);

Back to the top