#ifndef ROO_REF_COUNT_LIST
#define ROO_REF_COUNT_LIST
#include "RooLinkedList.h"
class RooRefCountList : public RooLinkedList {
public:
  RooRefCountList() ; 
  virtual ~RooRefCountList() {} ;
  virtual void Add(TObject* arg) { Add(arg,1) ; }
  virtual void Add(TObject* obj, Int_t count) ;
  virtual Bool_t Remove(TObject* obj) ;
  virtual Bool_t RemoveAll(TObject* obj) ;
  Int_t refCount(TObject* obj) ;
  
protected:  
  ClassDef(RooRefCountList,1) 
};
#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.