blob: da548156cbc87f48c41571e40740a0d832eb5204 (
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
|
// ============================================================================
//
// = LIBRARY
// TAO
//
// = FILENAME
// default_client.cpp
//
// = AUTHOR
// Chris Cleeland
//
// = VERSION
// $Id$
// ============================================================================
#include "tao/default_client.h"
#include "tao/Orb_Core.h"
TAO_Default_Client_Strategy_Factory::TAO_Default_Client_Strategy_Factory (void)
{
}
TAO_Default_Client_Strategy_Factory::~TAO_Default_Client_Strategy_Factory (void)
{}
int
TAO_Default_Client_Strategy_Factory::init (int argc, char *argv[])
{
return this->parse_args (argc, argv);
}
int
TAO_Default_Client_Strategy_Factory::parse_args (int /* argc */, char ** /* argv */)
{
// no args to parse at this time
return 0;
}
ACE_SVC_FACTORY_DEFINE (TAO_Default_Client_Strategy_Factory)
|