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_Static / ServerApp.h
blob0b30f015bb5715ed513657f237492745b1ca53bb
1 #ifndef SERVERAPP_H
2 #define SERVERAPP_H
4 #include "TestAppBase.h"
5 #include "ace/SString.h"
7 class ServerApp : public TestAppBase
9 public:
10 ServerApp();
11 virtual ~ServerApp() = default;
13 protected:
14 virtual int run_i (int argc, ACE_TCHAR *argv[]);
16 private:
17 int parse_args (int argc, ACE_TCHAR *argv[]);
19 ACE_TString ior_filename_;
20 unsigned num_clients_;
23 #endif