summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Naming/FaultTolerant/FT_Storable_Naming_Context_Factory.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Naming/FaultTolerant/FT_Storable_Naming_Context_Factory.h')
-rw-r--r--TAO/orbsvcs/orbsvcs/Naming/FaultTolerant/FT_Storable_Naming_Context_Factory.h21
1 files changed, 12 insertions, 9 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Naming/FaultTolerant/FT_Storable_Naming_Context_Factory.h b/TAO/orbsvcs/orbsvcs/Naming/FaultTolerant/FT_Storable_Naming_Context_Factory.h
index c705c434f4c..b714d052914 100644
--- a/TAO/orbsvcs/orbsvcs/Naming/FaultTolerant/FT_Storable_Naming_Context_Factory.h
+++ b/TAO/orbsvcs/orbsvcs/Naming/FaultTolerant/FT_Storable_Naming_Context_Factory.h
@@ -34,26 +34,29 @@ class TAO_FtNaming_Export TAO_FT_Storable_Naming_Context_Factory :
{
public:
- /// Data structure used by TAO_Persistent_Context_Index - typedef for ease of use.
+ /// Data structure used by TAO_Persistent_Context_Index -
+ /// typedef for ease of use.
typedef TAO_Storable_Naming_Context_Factory::HASH_MAP HASH_MAP;
// = Initialization and termination methods.
/// Constructor.
- TAO_FT_Storable_Naming_Context_Factory (size_t hash_table_size = ACE_DEFAULT_MAP_SIZE);
+ TAO_FT_Storable_Naming_Context_Factory (
+ size_t hash_table_size = ACE_DEFAULT_MAP_SIZE);
/// Destructor. Does not deallocate the hash map: if an instance of
/// this class goes out of scope, its hash_map remains in persistent storage.
virtual ~TAO_FT_Storable_Naming_Context_Factory (void);
/// Factory method for creating an implementation object for naming contexts.
- /// If an existing naming context implementation is being rebuilt, the map and counter parameters
- /// should be provided to the underlying HASH_MAP implementation
- virtual TAO_Storable_Naming_Context* create_naming_context_impl (CORBA::ORB_ptr orb,
- PortableServer::POA_ptr poa,
- const char *poa_id,
- TAO::Storable_Factory *factory);
-
+ /// If an existing naming context implementation is being rebuilt,
+ /// the map and counter parameters should be provided to the underlying
+ /// HASH_MAP implementation
+ virtual TAO_Storable_Naming_Context* create_naming_context_impl (
+ CORBA::ORB_ptr orb,
+ PortableServer::POA_ptr poa,
+ const char *poa_id,
+ TAO::Storable_Factory *factory);
};