summaryrefslogtreecommitdiff
path: root/ACE/TAO/examples/CSD_Strategy/ThreadPool3/ClientApp.h
blob: 3126bd3107455f1ae77c692462e01d15969289ed (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
28
29
30
// $Id$
#ifndef CLIENTAPP_H
#define CLIENTAPP_H

#include "ace/SString.h"
#include "ace/CORBA_macros.h"
#include "tao/Environment.h"


class ClientApp
{
  public:

    ClientApp();
    ~ClientApp();

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


  private:

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

    ACE_TString ior_;

    ACE_TString exe_name_;
};

#endif