1 #ifndef BUG_2248_REGRESSION_TEST_I_H
2 #define BUG_2248_REGRESSION_TEST_I_H
6 class Simple_Server_i
: public POA_Simple_Server
9 // Simpler Server implementation
12 // Implements the Simple_Server interface in test.idl
15 Simple_Server_i (CORBA::ORB_ptr orb
, const char* key
);
18 Simple_Server_i (void);
21 // = The Simple_Server methods.
22 char* remote_call (void);
24 char* shutdown (const char* key
);
26 char* abort (const char* key
);
30 CORBA::String_var _key
;
33 #endif /* BUG_2248_REGRESSION_TEST_I_H */