Public Member Functions | Public Attributes

TAO_PG::Properties_Encoder::NamedValue Struct Reference

Collaboration diagram for TAO_PG::Properties_Encoder::NamedValue:
Collaboration graph
[legend]

List of all members.

Public Member Functions

 NamedValue ()
 NamedValue (const ACE_CString &name, const PortableGroup::Value &value)
 NamedValue (const NamedValue &rhs)
NamedValueoperator= (const NamedValue &rhs)
bool operator== (const NamedValue &rhs) const
 Meaningless method to keep ACE_Vector happy.
bool operator!= (const NamedValue &rhs) const
 Meaningless method to keep ACE_Vector happy.

Public Attributes

ACE_CString name_
PortableGroup::Value value_

Detailed Description

Definition at line 50 of file PG_Properties_Encoder.h.


Constructor & Destructor Documentation

TAO_PG::Properties_Encoder::NamedValue::NamedValue ( void   ) 

Definition at line 18 of file PG_Properties_Encoder.inl.

  {
  }

TAO_PG::Properties_Encoder::NamedValue::NamedValue ( const ACE_CString name,
const PortableGroup::Value value 
)

Definition at line 23 of file PG_Properties_Encoder.inl.

    : name_ (name)
    , value_ (value)
  {
  }

TAO_PG::Properties_Encoder::NamedValue::NamedValue ( const NamedValue rhs  ) 

Definition at line 30 of file PG_Properties_Encoder.inl.

    : name_ (rhs.name_)
    , value_ (rhs.value_)
  {
  }


Member Function Documentation

bool TAO_PG::Properties_Encoder::NamedValue::operator!= ( const NamedValue rhs  )  const

Meaningless method to keep ACE_Vector happy.

Definition at line 57 of file PG_Properties_Encoder.inl.

  {
    return this->name_ != rhs.name_;
  }

Properties_Encoder::NamedValue & TAO_PG::Properties_Encoder::NamedValue::operator= ( const NamedValue rhs  ) 

Definition at line 38 of file PG_Properties_Encoder.inl.

  {
    if (this != &rhs)
    {
      this->name_ = rhs.name_;
      this->value_ = rhs.value_;
    }
    return *this;
  }

bool TAO_PG::Properties_Encoder::NamedValue::operator== ( const NamedValue rhs  )  const

Meaningless method to keep ACE_Vector happy.

Definition at line 50 of file PG_Properties_Encoder.inl.

  {
    return this->name_ == rhs.name_;
  }


Member Data Documentation

Definition at line 53 of file PG_Properties_Encoder.h.

Definition at line 54 of file PG_Properties_Encoder.h.


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