Main Page   Namespace List   Class Hierarchy   Compound List   File List   Namespace Members   Compound Members   File Members  

xmlUtil::Identifier Class Reference

For now, nothing to add to base class. More...

#include <Identifier.h>

List of all members.

Public Methods

 Identifier ()
 ~Identifier ()
 Identifier (unsigned n)
 Identifier (const Identifier &toCopy)
void append (unsigned int n)
void append (const Identifier &toAppend)


Detailed Description

For now, nothing to add to base class.

Definition at line 11 of file Identifier.h.


Constructor & Destructor Documentation

xmlUtil::Identifier::Identifier  
 

Definition at line 10 of file Identifier.cxx.

Referenced by append(), and ~Identifier().

00010                          {
00011     std::vector<unsigned int>();
00012   }

xmlUtil::Identifier::~Identifier   [inline]
 

Definition at line 14 of file Identifier.h.

References Identifier().

00014 {}

xmlUtil::Identifier::Identifier unsigned    n
 

Definition at line 13 of file Identifier.cxx.

00013                                    :
00014     std::vector<unsigned int>(n) {
00015   }
  Identifier::Identifier(const Identifier& toCopy) :

xmlUtil::Identifier::Identifier const Identifier &    toCopy
 

Definition at line 16 of file Identifier.cxx.

00016                                                  :
00017     std::vector<unsigned int>(toCopy) {
00018   }
  void Identifier::append(const Identifier& toAppend) {


Member Function Documentation

void xmlUtil::Identifier::append const Identifier &    toAppend
 

Definition at line 19 of file Identifier.cxx.

00019                                                     {
00020     std::copy(toAppend.begin(), toAppend.end(), std::back_inserter(*this));
00021   }

void xmlUtil::Identifier::append unsigned int    n [inline]
 

Definition at line 17 of file Identifier.h.

References Identifier().

00017 { push_back(n);}


The documentation for this class was generated from the following files:
Generated on Wed Oct 16 14:02:50 2002 by doxygen1.2.13.1 written by Dimitri van Heesch, © 1997-2001