Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / TAO / tests / Bug_2494_Regression / test_i.h
blob6bce3d1b74e10647d2fb6369e9c545d1698f8129
1 #ifndef TAO_BUG_2494_REGRESSION_TEST_I_H
2 #define TAO_BUG_2494_REGRESSION_TEST_I_H
4 #include "testS.h"
6 class Simple_Server_i : public POA_Simple_Server
8 // = TITLE
9 // Simpler Server implementation
11 // = DESCRIPTION
12 // Implements the Simple_Server interface in test.idl
14 public:
15 Simple_Server_i (CORBA::ORB_ptr orb);
16 // ctor
18 // = The Simple_Server methods.
19 char *test_method (const char *x);
21 void shutdown ();
23 private:
24 CORBA::ORB_var orb_;
25 // The ORB
28 #if defined(__ACE_INLINE__)
29 #include "test_i.inl"
30 #endif /* __ACE_INLINE__ */
32 #endif /* TAO_BUG_2494_REGRESSION_TEST_I_H */