Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'examples/org.eclipse.etrice.tutorials.c/src-gen/RemoveComment/ATop.h')
-rw-r--r--examples/org.eclipse.etrice.tutorials.c/src-gen/RemoveComment/ATop.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/examples/org.eclipse.etrice.tutorials.c/src-gen/RemoveComment/ATop.h b/examples/org.eclipse.etrice.tutorials.c/src-gen/RemoveComment/ATop.h
new file mode 100644
index 000000000..b73f9f72b
--- /dev/null
+++ b/examples/org.eclipse.etrice.tutorials.c/src-gen/RemoveComment/ATop.h
@@ -0,0 +1,39 @@
+/**
+ * @author generated by eTrice
+ *
+ * Header File of ActorClass ATop
+ *
+ */
+
+#ifndef _ATOP_H_
+#define _ATOP_H_
+
+#include "etDatatypes.h"
+#include "messaging/etMessage.h"
+
+
+
+typedef struct ATop ATop;
+
+/* const part of ActorClass (ROM) */
+/* this actor class has no ports and thus no constant data */
+
+
+/* variable part of ActorClass (RAM) */
+struct ATop {
+ /* data send ports */
+
+ /*--------------------- attributes ---------------------*/
+
+};
+
+void ATop_init(ATop* self);
+
+void ATop_receiveMessage(void* self, void* ifitem, const etMessage* msg);
+
+
+/*--------------------- operations ---------------------*/
+
+
+#endif /* _ATOP_H_ */
+

Back to the top