// -*- C++ -*- //============================================================================= /** * @file Interpreter_Utils.h * * $Id$ * * @author */ //============================================================================= #ifndef TAO_INTERPRETER_UTILS_H #define TAO_INTERPRETER_UTILS_H #include /**/ "ace/pre.h" #include "ace/Hash_Map_Manager.h" #include "ace/Null_Mutex.h" #include "tao/Typecode.h" #include "tao/CORBA_String.h" #include "orbsvcs/Trader/trading_export.h" // = Classes to deal with the ACE_Hash_Map_Manager. class TAO_Trading_Export TAO_String_Hash_Key : public CORBA::String_var { // = TITLE // Key for the Hash Table. The EXT_ID of the // ACE_Hash_Map_Manager. public: // = Initialization and termination methods. TAO_String_Hash_Key (void); // Default constructor. TAO_String_Hash_Key (char * name); // Constructor from a const string. TAO_String_Hash_Key (const char * name); // Constructor from a const string. TAO_String_Hash_Key (const CORBA::String_var &hash_key); // Copy constructor. bool operator == (const TAO_String_Hash_Key &hash_key) const; // The operator for hash binding and "find"ing. friend bool operator < (const TAO_String_Hash_Key &left, const TAO_String_Hash_Key &right); // The operator for hash binding and "find"ing. u_long hash (void) const; // The function that computes a hash value. }; typedef ACE_Hash_Map_Manager_Ex, ACE_Equal_To, ACE_Null_Mutex> TAO_Lookup_Table; typedef ACE_Hash_Map_Manager_Ex, ACE_Equal_To, ACE_Null_Mutex> TAO_Typecode_Table; // ************************************************************* // TAO_Sequence_Extracter_Base // ************************************************************* class TAO_Sequence_Extracter_Base // = TITLE // Static methods used by the TAO_Sequence_Extracter class. { public: static CORBA::TCKind sequence_type (CORBA::TypeCode* code ACE_ENV_ARG_DECL) ACE_THROW_SPEC ((CORBA::SystemException)); // Return the sequence element type for the sequence whose typecode // is . }; #include /**/ "ace/post.h" #endif /* TAO_INTERPRETER_UTILS_H */