Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/qompass-designer/org.eclipse.papyrus.qompass.modellibs.core/HelloWorld/components/HelloWorld.h')
-rw-r--r--extraplugins/qompass-designer/org.eclipse.papyrus.qompass.modellibs.core/HelloWorld/components/HelloWorld.h58
1 files changed, 58 insertions, 0 deletions
diff --git a/extraplugins/qompass-designer/org.eclipse.papyrus.qompass.modellibs.core/HelloWorld/components/HelloWorld.h b/extraplugins/qompass-designer/org.eclipse.papyrus.qompass.modellibs.core/HelloWorld/components/HelloWorld.h
new file mode 100644
index 00000000000..de7e6e07050
--- /dev/null
+++ b/extraplugins/qompass-designer/org.eclipse.papyrus.qompass.modellibs.core/HelloWorld/components/HelloWorld.h
@@ -0,0 +1,58 @@
+// --------------------------------------------------------
+// Code generated by Papyrus C++
+// --------------------------------------------------------
+
+#ifndef HELLOWORLD_COMPONENTS_HELLOWORLD_H
+#define HELLOWORLD_COMPONENTS_HELLOWORLD_H
+
+/************************************************************
+ HelloWorld class header
+ ************************************************************/
+
+/* Owner package header include */
+#include <HelloWorld/components/Pkg_components.h>
+
+/* Owner package header include */
+#include <PrimitiveTypes/Pkg_PrimitiveTypes.h>
+
+#include <sysinterfaces/IStart.h>
+
+#include <core/StdPorts/Cstart.h>
+
+namespace components {
+
+/************************************************************/
+/**
+ * Configuration attribute within the Hello World component. Its value is configured on the instance level.
+ */
+
+class HelloWorld: public ::StdPorts::Cstart, public IStart {
+
+public:
+
+ /**
+ *
+ */
+ String message;
+
+ /**
+ *
+ *
+ */
+ void run();
+
+};
+/************************************************************/
+/* External declarations (package visibility) */
+
+/************************************************************/
+
+/* Inline functions */
+
+} // of namespace components
+
+/************************************************************
+ End of HelloWorld class header
+ ************************************************************/
+
+#endif

Back to the top