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

Identifier.cxx

Go to the documentation of this file.
00001 // $Header: /nfs/slac/g/glast/ground/cvs/xmlUtil/src/id/Identifier.cxx,v 1.2 2002/01/04 20:27:52 burnett Exp $
00002 #include "xmlUtil/id/Identifier.h"
00003 
00004 #include <iterator>
00005 
00006 namespace xmlUtil {
00007 
00008   // Nothing to do for now because, although we're formally a derived
00009   // class, haven't yet added anything to the base class implementation.
00010   Identifier::Identifier() {
00011     std::vector<unsigned int>();
00012   }
00013   Identifier::Identifier(unsigned n) :
00014     std::vector<unsigned int>(n) {
00015   }
00016   Identifier::Identifier(const Identifier& toCopy) :
00017     std::vector<unsigned int>(toCopy) {
00018   }
00019   void Identifier::append(const Identifier& toAppend) {
00020     std::copy(toAppend.begin(), toAppend.end(), std::back_inserter(*this));
00021   }
00022 }

Generated on Wed Oct 16 14:02:47 2002 by doxygen1.2.13.1 written by Dimitri van Heesch, © 1997-2001