ROOT logo
#ifndef HPRTEXT
#define HPRTEXT
#include "TAttText.h"
#include "TObject.h"
#include "TString.h"

class HprText : public TObject, public TAttText
{
private:
   TString   fText;
   Double_t  fOffset;
public:
   HprText(const char * text = NULL);
   virtual ~HprText(){};
   void SetText(const char * text) { fText = text; };
   void SetOffset(Double_t offset) { fOffset = offset; };
   Double_t GetOffset() { return fOffset; };
   const char *GetText() { return fText.Data(); };

ClassDef(HprText,1)
};
#endif
 HprText.h:1
 HprText.h:2
 HprText.h:3
 HprText.h:4
 HprText.h:5
 HprText.h:6
 HprText.h:7
 HprText.h:8
 HprText.h:9
 HprText.h:10
 HprText.h:11
 HprText.h:12
 HprText.h:13
 HprText.h:14
 HprText.h:15
 HprText.h:16
 HprText.h:17
 HprText.h:18
 HprText.h:19
 HprText.h:20
 HprText.h:21
 HprText.h:22