/* -*- C++ -*- */ /** * @file Direct_Consumer.h * * $Id: Direct_Consumer.h 81424 2008-04-24 14:02:21Z johnnyw $ * * @author Pradeep Gore * * */ #ifndef TAO_Notify_Tests_DIRECT_CONSUMER_H #define TAO_Notify_Tests_DIRECT_CONSUMER_H #include /**/ "ace/pre.h" #include "notify_test_export.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ #include "Periodic_Consumer.h" /** * @class TAO_Notify_Tests_Direct_Consumer * * @brief Does not connect to the Notification Service. The Direct Supplier supplies events directly. * */ class TAO_NOTIFY_TEST_Export TAO_Notify_Tests_Direct_Consumer : public TAO_Notify_Tests_Periodic_Consumer { public: /// Constructor TAO_Notify_Tests_Direct_Consumer (void); /// Destructor ~TAO_Notify_Tests_Direct_Consumer (); /// Connect using options parsed and set initial QoS. virtual void connect (void); }; #include /**/ "ace/post.h" #endif /* TAO_Notify_Tests_DIRECT_CONSUMER_H */