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

Identifier.h

Go to the documentation of this file.
00001 //$Header: /nfs/slac/g/glast/ground/cvs/xmlUtil/xmlUtil/id/Identifier.h,v 1.1 2002/01/03 21:09:27 jrb Exp $
00002 #ifndef XMLUTIL_IDENTIFIER_H
00003 #define XMLUTIL_IDENTIFIER_H
00004 
00005 #include <vector>
00006 
00007 namespace xmlUtil {
00010 
00011   class Identifier : public std::vector<unsigned int> {
00012   public:
00013     Identifier();
00014     ~Identifier() {}
00015     Identifier(unsigned n);
00016     Identifier(const Identifier& toCopy);
00017     void append(unsigned int n) { push_back(n);}
00018     void append(const Identifier& toAppend);
00019   };
00020 }
00021 #endif

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