2 //=============================================================================
6 * @author Jeff Parsons <parsons@cs.wustl.edu>
8 //=============================================================================
19 * @brief Illustrates how to integrate a servant with the generated
22 * Implementation of the example at the servant side.
23 * Sends a no-op oneway and twoway request.
25 class PP_Test_i
: public POA_Pluggable_Test
29 PP_Test_i (CORBA::ORB_ptr orb
);
34 /// Test a oneway call.
35 virtual void send_oneway (void);
37 /// Test a twoway call.
38 virtual void send_void (void);
41 virtual void shutdown (void);
44 /// Keep a pointer to the ORB so we can shut it down.
49 * @class Pluggable_Test_Factory_i:
51 * @brief Pluggable_Test_Factory_i
53 * Factory object returning the Pluggable_Test objrefs
55 class Pluggable_Test_Factory_i
: public POA_Pluggable_Test_Factory
59 Pluggable_Test_Factory_i (CORBA::ORB_ptr orb
);
62 ~Pluggable_Test_Factory_i (void);
64 /// Make a Pluggable Test object.
65 virtual Pluggable_Test_ptr
make_pluggable_test (void);
68 PP_Test_i my_pluggable_test_
;
71 #endif /* _PP_TEST_I_H */