Changes to attempt to silence bcc64x
[ACE_TAO.git] / TAO / examples / CSD_Strategy / ThreadPool / ClientApp.h
blob3c0b73b2607c22c8ba56ea7323895835d0da7eaa
1 #ifndef CLIENTAPP_H
2 #define CLIENTAPP_H
4 #include "ace/SString.h"
5 #include "ace/CORBA_macros.h"
6 #include "tao/Environment.h"
8 class ClientApp
10 public:
11 ClientApp();
12 ~ClientApp();
14 int run(int argc, ACE_TCHAR* argv[]);
17 private:
18 int parse_args(int argc, ACE_TCHAR* argv[]);
19 void usage_statement();
21 ACE_TString ior_;
23 ACE_TString exe_name_;
26 #endif