Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Schuetz2011-12-26 12:53:01 +0000
committerThomas Schuetz2011-12-26 12:53:01 +0000
commitb5563f0b66d9cbb2c6dc3f9d91b9b6eeef4b1ead (patch)
tree4b9e92e9938defe18cd7e351d86b9ed01cdd1fcb /plugins/org.eclipse.etrice.generator.c/src/org/eclipse/etrice/generator/c/gen/MainGen.xtend
parent7c8cbc7f125c97503921e8d4f1497898ab9b93aa (diff)
downloadorg.eclipse.etrice-b5563f0b66d9cbb2c6dc3f9d91b9b6eeef4b1ead.tar.gz
org.eclipse.etrice-b5563f0b66d9cbb2c6dc3f9d91b9b6eeef4b1ead.tar.xz
org.eclipse.etrice-b5563f0b66d9cbb2c6dc3f9d91b9b6eeef4b1ead.zip
[generator.c] first working and tested version of generator for DataClass
Diffstat (limited to 'plugins/org.eclipse.etrice.generator.c/src/org/eclipse/etrice/generator/c/gen/MainGen.xtend')
-rw-r--r--plugins/org.eclipse.etrice.generator.c/src/org/eclipse/etrice/generator/c/gen/MainGen.xtend8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/org.eclipse.etrice.generator.c/src/org/eclipse/etrice/generator/c/gen/MainGen.xtend b/plugins/org.eclipse.etrice.generator.c/src/org/eclipse/etrice/generator/c/gen/MainGen.xtend
index 8ae420117..6dae1889d 100644
--- a/plugins/org.eclipse.etrice.generator.c/src/org/eclipse/etrice/generator/c/gen/MainGen.xtend
+++ b/plugins/org.eclipse.etrice.generator.c/src/org/eclipse/etrice/generator/c/gen/MainGen.xtend
@@ -41,12 +41,12 @@ class MainGen implements IGenerator {
def void doGenerate(Root e) {
dataClassGen.doGenerate(e);
- protocolClassGen.doGenerate(e);
- actorClassGen.doGenerate(e);
- subsystemClassGen.doGenerate(e);
+ //protocolClassGen.doGenerate(e);
+ //actorClassGen.doGenerate(e);
+ //subsystemClassGen.doGenerate(e);
if (!e.library) {
- subsystemRunnerGen.doGenerate(e);
+ //subsystemRunnerGen.doGenerate(e);
}
}
} \ No newline at end of file

Back to the top