Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'examples/org.eclipse.etrice.tutorials.c/src-gen/RemoveComment/RemoveCommentSubSys.h')
-rw-r--r--examples/org.eclipse.etrice.tutorials.c/src-gen/RemoveComment/RemoveCommentSubSys.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/examples/org.eclipse.etrice.tutorials.c/src-gen/RemoveComment/RemoveCommentSubSys.h b/examples/org.eclipse.etrice.tutorials.c/src-gen/RemoveComment/RemoveCommentSubSys.h
new file mode 100644
index 000000000..c910fc0a1
--- /dev/null
+++ b/examples/org.eclipse.etrice.tutorials.c/src-gen/RemoveComment/RemoveCommentSubSys.h
@@ -0,0 +1,30 @@
+/**
+ * @author generated by eTrice
+ *
+ * Header File of SubSystemClass RemoveCommentSubSys
+ *
+ */
+
+#ifndef _REMOVECOMMENTSUBSYS_H_
+#define _REMOVECOMMENTSUBSYS_H_
+
+
+
+/* lifecycle functions
+ * init -> start -> run (loop) -> stop -> destroy
+ */
+
+void RemoveCommentSubSys_init(void); /* lifecycle init */
+void RemoveCommentSubSys_start(void); /* lifecycle start */
+
+void RemoveCommentSubSys_run(void); /* lifecycle run */
+
+void RemoveCommentSubSys_stop(void); /* lifecycle stop */
+void RemoveCommentSubSys_destroy(void); /* lifecycle destroy */
+
+void SubSysClass_shutdown(void); /* shutdown the dispatcher loop */
+
+
+#endif /* _REMOVECOMMENTSUBSYS_H_ */
+
+

Back to the top