diff options
Diffstat (limited to 'quellcode/versuch1/bench.idl')
| -rwxr-xr-x | quellcode/versuch1/bench.idl | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/quellcode/versuch1/bench.idl b/quellcode/versuch1/bench.idl new file mode 100755 index 0000000..a2e0249 --- /dev/null +++ b/quellcode/versuch1/bench.idl @@ -0,0 +1,20 @@ +/** + * + * \file bench.idl + * \brief Interfacedefinition for writing values to digital Output + * + * \author Manuel Traut + * \version 2006-10-15 + * + */ + +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); + }; +}; |
