summaryrefslogtreecommitdiff
path: root/TAO/tao/default_client.cpp
blob: da1e817b405cd8eaeb4f9bb63f9edea25c8821f2 (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
// $Id$

#include "tao/default_client.h"
#include "tao/ORB_Core.h"

#if !defined (__ACE_INLINE__)
# include "tao/default_client.i"
#endif /* ! __ACE_INLINE__ */

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_FACTORY_DEFINE (TAO, TAO_Default_Client_Strategy_Factory)