/*****************************************************************************
* Project: RooFit *
* Package: RooFitCore *
* File: $Id: RooLinkedListElem.rdl,v 1.10 2005/02/25 14:22:58 wverkerke Exp $
* Authors: *
* WV, Wouter Verkerke, UC Santa Barbara, verkerke@slac.stanford.edu *
* DK, David Kirkby, UC Irvine, dkirkby@uci.edu *
* *
* Copyright (c) 2000-2005, Regents of the University of California *
* and Stanford University. All rights reserved. *
* *
* Redistribution and use in source and binary forms, *
* with or without modification, are permitted according to the terms *
* listed in LICENSE (http://roofit.sourceforge.net/license.txt) *
*****************************************************************************/
#ifndef ROO_LINKED_LIST_ELEM
#define ROO_LINKED_LIST_ELEM
#include "Rtypes.h"
#include "RooLinkedListElem.h"
class TObject ;
class RooLinkedListElem ;
class TBuffer ;
class RooLinkedListElem {
public:
// Initial element ctor
RooLinkedListElem(TObject* arg) :
_prev(0), _next(0), _arg(arg), _refCount(1) {
}
// Link element ctor
RooLinkedListElem(TObject* arg, RooLinkedListElem* after) :
_prev(after), _next(after->_next), _arg(arg), _refCount(1) {
// Insert self in link
after->_next = this ;
if (_next) _next->_prev = this ;
}
// Destructor
virtual ~RooLinkedListElem() {
// Remove self from link
if (_prev) _prev->_next = _next ;
if (_next) _next->_prev = _prev ;
}
Int_t refCount() const { return _refCount ; }
Int_t incRefCount() { return ++_refCount ; }
Int_t decRefCount() { return --_refCount ; }
protected:
friend class RooHashTable ;
friend class RooLinkedList ;
friend class RooLinkedListIter ;
RooLinkedListElem* _prev ; // Link to previous element in list
RooLinkedListElem* _next ; // Link to next element in list
TObject* _arg ; // Link to contents
Int_t _refCount ; //! Reference count
protected:
// Forbidden
RooLinkedListElem(const RooLinkedListElem&) ;
ClassDef(RooLinkedListElem,0) // Element of RooLinkedList container class
} ;
#endif
syntax highlighted by Code2HTML, v. 0.9.1