summaryrefslogtreecommitdiff
path: root/CIAO/ciao/FTComponentServer/Configurator_Factory.h
blob: 5f62473a5dac071ca21013c79497eb3f2e252738 (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
31
32
33
34
35
36
37
38
39
// $Id$
/**
 * @file Configurator_Factory.h
 * @author William R. Otte <wotte@dre.vanderbilt.edu>
 * @author Nanbor Wang <>
 *
 * Factory for creating configurators, based on old NodeApplication_Options
 * class
 */

#ifndef CIAO_CONFIGURATOR_FACTORY_H
#define CIAO_CONFIGURATOR_FACTORY_H
#include /**/ "ace/pre.h"

#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */

#include "CIAO_FTComponentServer_svnt_export.h"

namespace CIAO
{
  namespace Deployment
  {
    class ComponentServer_Configurator;

    class CIAO_FTComponentServer_svnt_Export Configurator_Factory
    {
    public:
      ComponentServer_Configurator * operator () (int &argc, ACE_TCHAR **argv);

    private:
      bool parse_args (int &argc, ACE_TCHAR **argv);
    };
  }
}
#include /**/ "ace/post.h"

#endif