summaryrefslogtreecommitdiff
path: root/quellcode/versuch3/bench.idl
diff options
context:
space:
mode:
Diffstat (limited to 'quellcode/versuch3/bench.idl')
-rwxr-xr-xquellcode/versuch3/bench.idl10
1 files changed, 10 insertions, 0 deletions
diff --git a/quellcode/versuch3/bench.idl b/quellcode/versuch3/bench.idl
new file mode 100755
index 0000000..1001a55
--- /dev/null
+++ b/quellcode/versuch3/bench.idl
@@ -0,0 +1,10 @@
+module benchmark{
+ exception invalidRequest{};
+ 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);
+ };
+};