Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / TAO / tests / MProfile / test_i.h
blob937e4700fd98f9d902eaf2c45eaea79173fd8b5d
2 //=============================================================================
3 /**
4 * @file test_i.h
6 * @author Carlos O'Ryan <coryan@uci.edu>
7 */
8 //=============================================================================
11 #ifndef TAO_MPROFILE_TEST_I_H
12 #define TAO_MPROFILE_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 /// ctor
30 Simple_Server_i ();
32 // = The Simple_Server methods.
33 CORBA::Long remote_call ();
35 void shutdown ();
37 private:
38 CORBA::ORB_var orb_;
40 CORBA::Long val_;
43 #endif /* TAO_MPROFILE_TEST_I_H */