#include "tao/Object.h"#include "tao/Stub.h"#include "tao/Adapter_Registry.h"#include "tao/Adapter.h"#include "tao/SystemException.h"#include "tao/debug.h"#include "tao/TAO_Server_Request.h"#include "ace/Log_Msg.h"#include "ace/OS_NS_string.h"#include "ace/CORBA_macros.h"
Go to the source code of this file.
Functions | |
| ACE_RCSID (tao, Adapter_Registry,"$Id: Adapter_Registry.cpp 81410 2008-04-24 09:22:08Z johnnyw $") 1 TAO_Adapter_Registry | |
| ACE_RCSID | ( | tao | , | |
| Adapter_Registry | , | |||
| "$Id: Adapter_Registry.cpp 81410 2008-04-24 09:22:08Z johnnyw $" | ||||
| ) |
Definition at line 15 of file Adapter_Registry.cpp.
00017 : Adapter_Registry.cpp 81410 2008-04-24 09:22:08Z johnnyw $") 00018 00019 TAO_BEGIN_VERSIONED_NAMESPACE_DECL 00020 00021 TAO_Adapter_Registry::TAO_Adapter_Registry (TAO_ORB_Core *oc) 00022 : orb_core_ (oc), 00023 adapters_capacity_ (16), // @@ Make it configurable 00024 adapters_count_ (0), 00025 adapters_ (0) 00026 { 00027 ACE_NEW (this->adapters_, 00028 TAO_Adapter*[this->adapters_capacity_]); 00029 }
1.6.1