#ifndef HDATAOBJECT_H
#define HDATAOBJECT_H
#if !defined(__CINT__) || defined(__MAKECINT__) 
#include "TObject.h"
#include "hdataobjid.h"
#endif
class HCategory;
class HDataObject : public TObject
{
protected:
  HLocation *fLocation; 
public:
  HDataObject(void) : fLocation(0) {}
  ~HDataObject(void) { if(fLocation) delete fLocation;}
  void setLocation(HLocation &aLoc);
  HDataObjId *getId(void);
  HLocation *&getLocation(void);
  virtual Cat_t getCategory(void);
  Bool_t HasIdentifier(void);
  ClassDef(HDataObject,1) 
};
#endif /* !HDATAOBJECT */
Last change: Sat May 22 12:54:20 2010
Last generated: 2010-05-22 12:54
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.