CMS 3D CMS Logo

Public Member Functions | Public Attributes

SimpleSAXParser::Attribute Struct Reference

#include <SimpleSAXParser.h>

List of all members.

Public Member Functions

 Attribute (const std::string &iKey, const std::string &iValue)
 Attribute (const Attribute &attr)
bool operator< (const Attribute &attribute) const

Public Attributes

std::string key
std::string value

Detailed Description

Definition at line 74 of file SimpleSAXParser.h.


Constructor & Destructor Documentation

SimpleSAXParser::Attribute::Attribute ( const std::string &  iKey,
const std::string &  iValue 
) [inline]

Definition at line 79 of file SimpleSAXParser.h.

      :key(iKey), value(iValue)
      {}
SimpleSAXParser::Attribute::Attribute ( const Attribute attr) [inline]

Definition at line 83 of file SimpleSAXParser.h.

      :key(attr.key), value(attr.value)
      {}

Member Function Documentation

bool SimpleSAXParser::Attribute::operator< ( const Attribute attribute) const [inline]

Definition at line 87 of file SimpleSAXParser.h.

References key.

      {
         return this->key < attribute.key;
      }

Member Data Documentation

Definition at line 77 of file SimpleSAXParser.h.

Referenced by FWXMLConfigParser::pushConfig().