2 #ifndef CLIENT_LEAKS_PROCESS_FACTORY_H
3 #define CLIENT_LEAKS_PROCESS_FACTORY_H
4 #include /**/ "ace/pre.h"
8 /// Implement the Test::Process_Factory interface
10 : public virtual POA_Test::Process_Factory
14 Process_Factory (CORBA::ORB_ptr orb
);
16 /// Return 1 if the shutdown message has been received already
17 int shutdown_received ();
19 // = The skeleton methods
20 virtual Test::Process_ptr
create_new_process ();
24 virtual void shutdown ();
27 /// Use an ORB reference to convert strings to objects and shutdown
31 /// Set to 1 when the test has finished
32 int shutdown_received_
;
35 #include /**/ "ace/post.h"
36 #endif /* CLIENT_LEAKS_PROCESS_FACTORY_H */