ACE+TAO-7_0_8
[ACE_TAO.git] / TAO / examples / PluggableUDP / tests / SimplePerformance / test_i.h
blob37796d06ecca282268a9490ea15b9ea1b08eda6e
2 //=============================================================================
3 /**
4 * @file test_i.h
6 * @author Carlos O'Ryan
7 */
8 //=============================================================================
11 #ifndef TAO_MT_CLIENT_TEST_I_H
12 #define TAO_MT_CLIENT_TEST_I_H
14 #include "testS.h"
16 /**
17 * @class Simple_Server_i
19 * @brief Simpler Server implementation
21 * Implements the Simple_Server interface in test.idl
23 class Simple_Server_i : public POA_Simple_Server
25 public:
26 /// ctor
27 Simple_Server_i (CORBA::ORB_ptr orb);
29 // = The Simple_Server methods.
30 void sendCharSeq (const Char_Seq & charSeq);
32 void sendOctetSeq (const Octet_Seq & octetSeq);
34 CORBA::Long get_number (CORBA::Long num);
36 void shutdown (void);
38 private:
39 CORBA::ORB_var orb_;
42 #endif /* TAO_MT_CLIENT_TEST_I_H */