// IntObj.h A temporary class till I find out how to get
// base classes into TObjArrays.

#ifndef INTOBJ_H
#define INTOBJ_H

#include "TObject.h"

class IntObj: public TObject {

 public:

IntObj();
IntObj(Int_t num);
~IntObj();
Int_t Getnum();

 private:
Int_t m_num;

ClassDef(IntObj,1)
  };

#endif
