#ifndef ROOT_TXMLAttr
#define ROOT_TXMLAttr
#ifndef ROOT_TObject
#include "TObject.h"
#endif
class TXMLAttr : public TObject {
private:
   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
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.