1 // This may look like C, but it's really -*- C++ -*-
2 // ===================================================================
6 * @author Balachandran Natarajan <bala@cs.wustl.edu>
8 // ===================================================================
10 #ifndef TAO_TESTS_BIG_REPLY_I_H
11 #define TAO_TESTS_BIG_REPLY_I_H
12 #include /**/ "ace/pre.h"
16 /// Implement the Test::Big_Reply interface
18 * Simply return a Big_Reply
22 : public virtual POA_Test::Big_Reply
26 Big_Reply_i (CORBA::ORB_ptr orb
,
30 virtual ~Big_Reply_i (void);
32 // = The skeleton methods
33 virtual Test::Octet_Seq
*get_big_reply (void);
35 virtual void ping (void);
37 virtual void shutdown (void);
43 /// Length of the reply sequence
47 Test::Octet_Seq_var reply_message_
;
51 #include /**/ "ace/post.h"
53 #endif /*TAO_TESTS_BIG_REPLY_I_H*/