blob: e43ccf18b3473bbf027fd63fd5c694fc89c46638 (
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
|
/* -*- C++ -*- */
// =================================================================
/**
* @file IORTable.cpp
*
* $Id$
*
* @author Carlos O'Ryan <coryan@uci.edu>
*
*/
// =================================================================
#include "tao/IORTable/IORTable.h"
#include "tao/IORTable/Table_Adapter.h"
ACE_RCSID (IORTable, IORTable, "$Id$")
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
int
TAO_IORTable_Initializer::init (void)
{
return ACE_Service_Config::process_directive (ace_svc_desc_TAO_Table_Adapter_Factory);
}
TAO_END_VERSIONED_NAMESPACE_DECL
|