diff options
| author | Manuel Traut <manut@mecka.net> | 2014-03-31 16:53:55 +0200 |
|---|---|---|
| committer | Manuel Traut <manut@mecka.net> | 2014-03-31 16:53:55 +0200 |
| commit | 1adba473e6917b227e1b0a1118148101dca202e7 (patch) | |
| tree | 13180ede9564ba50c528b274ee5719b4e030ef06 /quellcode/versuch2/CPXEventConsumer_i.h | |
| parent | eacbf5bb4d57af21c731f41251015d3b991ad490 (diff) | |
Signed-off-by: Manuel Traut <manut@mecka.net>
Diffstat (limited to 'quellcode/versuch2/CPXEventConsumer_i.h')
| -rwxr-xr-x | quellcode/versuch2/CPXEventConsumer_i.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/quellcode/versuch2/CPXEventConsumer_i.h b/quellcode/versuch2/CPXEventConsumer_i.h new file mode 100755 index 0000000..7eacdea --- /dev/null +++ b/quellcode/versuch2/CPXEventConsumer_i.h @@ -0,0 +1,17 @@ +#ifndef CPXEVENTCONSUMER_H +#define CPXEVENTCONSUMER_H + +#include <orbsvcs/RtecEventCommS.h> +#include <iostream> + +class CPXEventConsumer_i : public virtual POA_RtecEventComm::PushConsumer +{ +public: + CPXEventConsumer_i(CORBA::ORB_ptr orb/*, int event_limit*/); + virtual void push(const RtecEventComm::EventSet& events) throw(CORBA::SystemException); + virtual void disconnect_push_consumer() throw(CORBA::SystemException); +private: + CORBA::ORB_var orb_; +}; + +#endif |
