diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-04-15 16:17:08 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-04-15 16:17:08 +0000 |
commit | 4677e3d06dbdab005aa979027d956c53307fe9f2 (patch) | |
tree | 37eedbadb7d61e1820a7a8d6c86333f9e5d6ad64 /TAO/tao/params.h | |
parent | b3ace1b5d429741ae8ff226ba23aa1989ba9e377 (diff) | |
download | ATCD-4677e3d06dbdab005aa979027d956c53307fe9f2.tar.gz |
ChangeLogTag:Thu Apr 15 10:44:12 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/params.h')
-rw-r--r-- | TAO/tao/params.h | 48 |
1 files changed, 5 insertions, 43 deletions
diff --git a/TAO/tao/params.h b/TAO/tao/params.h index 61b30ffa892..bffffcdd697 100644 --- a/TAO/tao/params.h +++ b/TAO/tao/params.h @@ -122,16 +122,16 @@ public: // The ORB will use the dotted decimal notation for addresses. By // default we use the full ascii names. - TAO_IOR_LookupTable * ior_lookup_table (void); + TAO_IOR_LookupTable * ior_lookup_table (void); void ior_lookup_table (TAO_IOR_LookupTable *table); // The table used by the ORB for looking up the ObjectID:IOR mappings - // specified on the commandline through the -ORBInitRef and + // specified on the commandline through the -ORBInitRef and // -ORBDefaultInitRef parameters. char *default_init_ref (void) const; void default_init_ref (const ACE_CString &default_init_ref); // Set/Get the Init Reference of an arbitrary ObjectID. - + private: ACE_INET_Addr addr_; // host + port number we are listening on @@ -164,13 +164,13 @@ private: int sock_rcvbuf_size_; // Size to be used for a socket's receive buffer. - + int sock_sndbuf_size_; // Size to be used for a socket's send buffer. int cdr_default_size_; // Default size for CDR buffers. - + int cdr_max_exp_size_; // Cutoff value for exponential growth of CDR buffers. @@ -196,44 +196,6 @@ enum TAO_Demux_Strategy TAO_USER_DEFINED }; -class TAO_Export TAO_OA_Parameters - // = TITLE - // Parameters specific to an Object Adapter. By definition, this - // is only on the server side, since a client does not have an - // object adapter. - // - // = NOTES - // This can be subclassed in order to have OA-specific - // parameters, e.g., the Realtime Object Adapter might subclass - // this and add its own parameters. -{ -public: - TAO_LOCAL_INLINE TAO_OA_Parameters (void); - // Constructor - - TAO_LOCAL_INLINE ~TAO_OA_Parameters (void); - // Destructor - - TAO_LOCAL_INLINE TAO_Active_Object_Map_Impl *userdef_lookup_strategy_for_user_id_policy (void); - // return the lookup strategy for the user id policy - - TAO_LOCAL_INLINE TAO_Active_Object_Map_Impl *userdef_lookup_strategy_for_system_id_policy (void); - // return the lookup strategy for the system id policy - - TAO_LOCAL_INLINE TAO_Reverse_Active_Object_Map_Impl *userdef_reverse_lookup_strategy_for_unique_id_policy (void); - // return the reverse lookup strategy for unique id policy - - TAO_LOCAL_INLINE void tablesize (CORBA::ULong tablesize); - // set the table size for lookup table - - TAO_LOCAL_INLINE CORBA::ULong tablesize (void); - // get the table size for the lookup table - -private: - CORBA::ULong tablesize_; - // size of object lookup table -}; - #if defined (__ACE_INLINE__) # include "tao/params.i" #endif /* __ACE_INLINE__ */ |