Merge pull request #1551 from DOCGroup/plm_jira_333
[ACE_TAO.git] / TAO / orbsvcs / tests / Bug_2248_Regression / test_i.h
blob392ba9fcdea4b93d06ec1925c771fc2d952dc7bb
1 #ifndef BUG_2248_REGRESSION_TEST_I_H
2 #define BUG_2248_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, const char* key);
16 // ctor
18 Simple_Server_i (void);
19 // ctor
21 // = The Simple_Server methods.
22 char* remote_call (void);
24 char* shutdown (const char* key);
26 char* abort (const char* key);
28 private:
29 CORBA::ORB_var orb_;
30 CORBA::String_var _key;
33 #endif /* BUG_2248_REGRESSION_TEST_I_H */