summaryrefslogtreecommitdiff
path: root/quellcode/versuch4/bench.idl
diff options
context:
space:
mode:
authorManuel Traut <manut@mecka.net>2014-03-31 16:53:55 +0200
committerManuel Traut <manut@mecka.net>2014-03-31 16:53:55 +0200
commit1adba473e6917b227e1b0a1118148101dca202e7 (patch)
tree13180ede9564ba50c528b274ee5719b4e030ef06 /quellcode/versuch4/bench.idl
parenteacbf5bb4d57af21c731f41251015d3b991ad490 (diff)
add quellcodeHEADmaster
Signed-off-by: Manuel Traut <manut@mecka.net>
Diffstat (limited to 'quellcode/versuch4/bench.idl')
-rwxr-xr-xquellcode/versuch4/bench.idl21
1 files changed, 21 insertions, 0 deletions
diff --git a/quellcode/versuch4/bench.idl b/quellcode/versuch4/bench.idl
new file mode 100755
index 0000000..d5808dd
--- /dev/null
+++ b/quellcode/versuch4/bench.idl
@@ -0,0 +1,21 @@
+module benchmark{
+
+ exception invalidRequest{};
+
+ struct dataStruct{
+ string data;
+ short valPort1;
+ short valPort2;
+ short valPort3;
+ };
+
+ interface Put{
+ void connect() raises(invalidRequest);
+ void onePort(in short portNo, in short value) raises(invalidRequest);
+ void allPorts( in short valPort1,
+ in short valPort2,
+ in short valPort3) raises(invalidRequest);
+
+ void dataAndPorts( in dataStruct data) raises(invalidRequest);
+ };
+};