1 // ===================================================================
5 * @author Balachandran Natarajan <bala@cs.wustl.edu>
7 // ===================================================================
9 #ifndef TAO_TESTS_BIG_REPLY_I_H
10 #define TAO_TESTS_BIG_REPLY_I_H
11 #include /**/ "ace/pre.h"
15 /// Implement the Test::Big_Reply interface
17 * Simply return a Big_Reply
21 : public virtual POA_Test::Big_Reply
25 Big_Reply_i (CORBA::ORB_ptr orb
,
29 virtual ~Big_Reply_i ();
31 // = The skeleton methods
32 virtual Test::Octet_Seq
*get_big_reply ();
36 virtual void shutdown ();
42 /// Length of the reply sequence
46 Test::Octet_Seq_var reply_message_
;
49 #include /**/ "ace/post.h"
51 #endif /*TAO_TESTS_BIG_REPLY_I_H*/