Changes to attempt to silence bcc64x
[ACE_TAO.git] / TAO / orbsvcs / tests / ImplRepo / MT_stress / server_i.h
blob4fd2dc305d66b391b4edec4d78dfd805d68ab335
1 // -*- C++ -*-
3 #if !defined (SERVER_I_H)
4 #define SERVER_I_H
6 #include "testS.h"
8 #include <memory>
9 #include "ace/SString.h"
11 class Server_i
13 public:
14 Server_i ();
15 ~Server_i ();
17 int init (int argc, ACE_TCHAR **argv);
19 int run ();
21 private:
22 int parse_args (int argc, ACE_TCHAR* argv[]);
24 CORBA::ORB_var orb_;
25 PortableServer::POA_var root_poa_;
27 ACE_CString server_name_;
28 ACE_CString second_name_;
31 #endif /* SERVER_I_H */