Public Member Functions | Private Attributes

ACE_NS_Internal Class Reference

This class and ACE_NS_String are used as Adapters to work with the Map_Manager. More...

#include <Local_Name_Space.h>

Collaboration diagram for ACE_NS_Internal:
Collaboration graph
[legend]

List of all members.

Public Member Functions

 ACE_NS_Internal (void)
 No-op constructor.
 ACE_NS_Internal (ACE_NS_String &value, const char *type)
 Constructor.
bool operator== (const ACE_NS_Internal &) const
 Compare an ACE_NS_Internal.
ACE_NS_String value (void)
 Return value.
const char * type (void)
 Return type.

Private Attributes

ACE_NS_String value_
 Contains the value of the string.
const char * type_
 Contains the type of the string.

Detailed Description

This class and ACE_NS_String are used as Adapters to work with the Map_Manager.

Definition at line 99 of file Local_Name_Space.h.


Constructor & Destructor Documentation

ACE_NS_Internal::ACE_NS_Internal ( void   ) 

No-op constructor.

Definition at line 135 of file Local_Name_Space.cpp.

  : value_ (),
    type_ ()
{
}

ACE_NS_Internal::ACE_NS_Internal ( ACE_NS_String value,
const char *  type 
)

Constructor.

Definition at line 141 of file Local_Name_Space.cpp.

  : value_ (value),
    type_ (type)
{
  ACE_TRACE ("ACE_NS_Internal::ACE_NS_Internal");
}


Member Function Documentation

bool ACE_NS_Internal::operator== ( const ACE_NS_Internal s  )  const

Compare an ACE_NS_Internal.

Definition at line 149 of file Local_Name_Space.cpp.

{
  ACE_TRACE ("ACE_NS_Internal::operator ==");
  return this->value_ == s.value_;
}

const char * ACE_NS_Internal::type ( void   ) 

Return type.

Definition at line 163 of file Local_Name_Space.cpp.

{
  ACE_TRACE ("ACE_NS_Internal::type");
  return this->type_;
}

ACE_NS_String ACE_NS_Internal::value ( void   ) 

Return value.

Definition at line 156 of file Local_Name_Space.cpp.

{
  ACE_TRACE ("ACE_NS_Internal::value");
  return this->value_;
}


Member Data Documentation

const char* ACE_NS_Internal::type_ [private]

Contains the type of the string.

Definition at line 122 of file Local_Name_Space.h.

Contains the value of the string.

Definition at line 119 of file Local_Name_Space.h.


The documentation for this class was generated from the following files:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines