/* -*- C++ -*- */ /** * @file EC.h * * @author Carlos O'Ryan (coryan@cs.wustl.edu) * * Event channel */ #ifndef EC_H #define EC_H #include "orbsvcs/RtecEventCommS.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ /** * @class EC * * @brief Simple event channel */ class EC { public: /// Constructor EC (); /// Run the test int run (int argc, ACE_TCHAR* argv[]); private: int parse_args (int argc, ACE_TCHAR *argv[]); }; #endif /* EC_H */