#ifndef ROOT_TXMLAttr
#define ROOT_TXMLAttr
#ifndef ROOT_TObject
#include "TObject.h"
#endif
class TXMLAttr : public TObject {
private:
TXMLAttr(const TXMLAttr&);
TXMLAttr& operator=(const TXMLAttr&);
const char *fKey;
const char *fValue;
public:
TXMLAttr(const char *key, const char *value) : fKey(key), fValue(value) { }
virtual ~TXMLAttr() { }
const char *GetName() const { return fKey; }
const char *Key() const { return fKey; }
const char *GetValue() const { return fValue; }
ClassDef(TXMLAttr,0)
};
#endif
Last change: Wed Jun 25 08:55:09 2008
Last generated: 2008-06-25 08:55
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.