#ifndef THROUGHPUT_RECEIVER_FACTORY_H #define THROUGHPUT_RECEIVER_FACTORY_H #include /**/ "ace/pre.h" #include "TestS.h" /// Implement the Test::Receiver_Factory interface class Receiver_Factory : public virtual POA_Test::Receiver_Factory { public: /// Constructor Receiver_Factory (CORBA::ORB_ptr orb); // = The skeleton methods virtual Test::Receiver_ptr create_receiver (); virtual void shutdown (); private: /// Keep a reference to the ORB in order to shutdown the app CORBA::ORB_var orb_; }; #include /**/ "ace/post.h" #endif /* THROUGHPUT_RECEIVER_FACTORY_H */