4 #include /**/ "ace/pre.h"
8 /// Implement the Test::McastHello interface
10 : public virtual POA_Test::McastHello
14 McastHello (CORBA::ORB_ptr orb
,
17 // = The skeleton methods
18 virtual void send_forty_two (CORBA::Long forty_two
);
20 virtual void shutdown ();
22 /// Return whether all test requests have been received successfully.
23 CORBA::Boolean
get_status ();
26 void send_large_octet_array (const Test::Octets
&);
29 /// Use an ORB reference to convert strings to objects and shutdown
33 /// The instance number. (Useful when debugging multiple servants)
36 /// Track the success/failure of the small request.
37 CORBA::Boolean small_request_status_
;
39 /// Track the success/failure of the large request.
40 CORBA::Boolean large_request_status_
;
43 #include /**/ "ace/post.h"
44 #endif /* MCASTHELLO_H */