Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Schuetz2012-01-02 22:40:00 +0000
committerThomas Schuetz2012-01-02 22:40:00 +0000
commitdf35a49da5a4aadb7875e37d938afc605251868d (patch)
treec3fdd54a5728aa862d6f74522799f598f3333d72 /examples/org.eclipse.etrice.generator.c.reference/model
parentc79f92e56625e20d78899a236102fe31ef4a8783 (diff)
downloadorg.eclipse.etrice-df35a49da5a4aadb7875e37d938afc605251868d.tar.gz
org.eclipse.etrice-df35a49da5a4aadb7875e37d938afc605251868d.tar.xz
org.eclipse.etrice-df35a49da5a4aadb7875e37d938afc605251868d.zip
[generator.c.reference] first version of runtime messaging for C, cleaned up unneeded "interface for port class" in Java ProtocolClass Generator, regenerated integration.tests
Diffstat (limited to 'examples/org.eclipse.etrice.generator.c.reference/model')
-rw-r--r--examples/org.eclipse.etrice.generator.c.reference/model/cGenRef.room22
1 files changed, 12 insertions, 10 deletions
diff --git a/examples/org.eclipse.etrice.generator.c.reference/model/cGenRef.room b/examples/org.eclipse.etrice.generator.c.reference/model/cGenRef.room
index 87d9b5f24..6ecd60223 100644
--- a/examples/org.eclipse.etrice.generator.c.reference/model/cGenRef.room
+++ b/examples/org.eclipse.etrice.generator.c.reference/model/cGenRef.room
@@ -1,5 +1,17 @@
RoomModel cGenRef {
+ ProtocolClass CommunicationProtocol {
+ incoming {
+ Message sendData(data: int32)
+ Message sendData2(data: DataClass1)
+
+ }
+ outgoing {
+ Message receivedData()
+ }
+ }
+
+
DataClass DataClass1 {
usercode1 {"// usercode1"}
usercode2 {"// usercode2"}
@@ -162,15 +174,5 @@ RoomModel cGenRef {
}
}
- ProtocolClass CommunicationProtocol {
- incoming {
- Message sendData(data: int32)
- Message sendData2(data: DataClass1)
-
- }
- outgoing {
- Message receivedData()
- }
- }
} \ No newline at end of file

Back to the top