summaryrefslogtreecommitdiff
path: root/TAO/tests/CSD_Strategy_Tests/TP_Test_Static/ServerApp.h
blob: db7bd5343779106a29771f8bab058c2eb2cae554 (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
27
// $Id$
#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