Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / tests / CSD_Strategy_Tests / TP_Test_1 / ServerApp.h
blob0440cc39a4311c5d11adcf62ecb0ed41803c149d
1 #ifndef SERVERAPP_H
2 #define SERVERAPP_H
4 #include "TestAppBase.h"
5 #include "ace/SString.h"
8 class ServerApp : public TestAppBase
10 public:
11 ServerApp();
12 virtual ~ServerApp() = default;
14 protected:
15 virtual int run_i(int argc, ACE_TCHAR* argv[]);
17 private:
18 int parse_args(int argc, ACE_TCHAR* argv[]);
20 ACE_TString ior_filename_;
21 unsigned num_clients_;
24 #endif