Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Schuetz2012-01-16 12:42:50 +0000
committerThomas Schuetz2012-01-16 12:42:50 +0000
commit112cbb3dd645b3f91f573290e94d0499da0705c1 (patch)
tree6978fd9bd46e3d36a5fda4bdd0a067c4b1185ab8 /examples/org.eclipse.etrice.generator.c.reference/src-gen/cGenRef/DataClass2.h
parenta1c1528bf5d71ba66eb99045edaf3a9fd9fb78f2 (diff)
downloadorg.eclipse.etrice-112cbb3dd645b3f91f573290e94d0499da0705c1.tar.gz
org.eclipse.etrice-112cbb3dd645b3f91f573290e94d0499da0705c1.tar.xz
org.eclipse.etrice-112cbb3dd645b3f91f573290e94d0499da0705c1.zip
[runtime.c] changed naming convention for runtime to prefix et (for eTrice)
Diffstat (limited to 'examples/org.eclipse.etrice.generator.c.reference/src-gen/cGenRef/DataClass2.h')
-rw-r--r--examples/org.eclipse.etrice.generator.c.reference/src-gen/cGenRef/DataClass2.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/examples/org.eclipse.etrice.generator.c.reference/src-gen/cGenRef/DataClass2.h b/examples/org.eclipse.etrice.generator.c.reference/src-gen/cGenRef/DataClass2.h
deleted file mode 100644
index 6d7259267..000000000
--- a/examples/org.eclipse.etrice.generator.c.reference/src-gen/cGenRef/DataClass2.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef _DataClass2_H_
-#define _DataClass2_H_
-
-#include "datatypes.h"
-
-/* TODO: includes only for used DataClasses, also for other models */
-
-
-typedef struct {
- //--------------------- attributes
- int32 Attr1;
- float32 Attr2;
- int32 Attr3;
-} DataClass2;
-
-// TODO: do we need setters and getters for C and C++ ?
-
-//--------------------- operations
-void DataClass2_Operation1 (DataClass2* self);
-
-// deep copy
-void DataClass2_deepCopy(DataClass2* source, DataClass2* target);
-
-#endif /* _DataClass2_H_ */
-

Back to the top