00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00017
00018 #ifndef BLAH_H
00019 #define BLAH_H
00020
00021 #include "Rtypes.h"
00022 #include "TObject.h"
00023
00024 class Blah : public TObject
00025 {
00026
00027 public:
00028
00029 Blah(int x = 0);
00030 Blah(const Blah& b);
00031 virtual ~Blah();
00032
00033 int GetMe(void);
00034 void DumpMe(void);
00035 void SetMe(int x);
00036
00037 private:
00038
00039 int fMyValue;
00040
00041 ClassDef(Blah,1)
00042 };
00043
00044 #endif // BLAH_H