summaryrefslogtreecommitdiff
path: root/TAO/tests/CSD_Strategy_Tests/TP_Test_Static/ServerApp.h
blob: 4c2cf169f2972bbc7ab1cf4696e46a5c555c4866 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef SERVERAPP_H
#define SERVERAPP_H

#include "TestAppBase.h"
#include "ace/SString.h"

class ServerApp : public TestAppBase
{
  public:

    ServerApp();
    virtual ~ServerApp();

  protected:

    virtual int run_i (int argc, ACE_TCHAR *argv[]);

  private:

    int parse_args (int argc, ACE_TCHAR *argv[]);

    ACE_TString ior_filename_;
    unsigned    num_clients_;
};

#endif