The Gaudi Framework  v32r2 (46d42edc)
ObjectContainerBase.h
Go to the documentation of this file.
1 #ifndef GAUDI_OBJECTCONTAINERBASE_H
2 #define GAUDI_OBJECTCONTAINERBASE_H 1
3 
4 // Include files
6 #include "GaudiKernel/Kernel.h"
7 
8 // Forward declarations
9 class ContainedObject;
10 
20 
21 protected:
23  ObjectContainerBase() = default;
26  ~ObjectContainerBase() override = default;
27 
28 public:
30  typedef size_t size_type;
31 
33  virtual long index( const ContainedObject* obj ) const = 0;
34 
36  virtual const ContainedObject* containedObject( long dist ) const = 0;
37  virtual ContainedObject* containedObject( long dist ) = 0;
38 
40  virtual size_type numberOfObjects() const = 0;
41 
45  virtual long add( ContainedObject* pObject ) = 0;
46 
50  virtual long remove( ContainedObject* value ) = 0;
51 };
52 
53 #endif // GAUDI_OBJECTCONTAINERBASE_H
size_t size_type
size_type, to conform the STL container interface
All classes that their objects may be contained in an LHCb ObjectContainer (e.g.
DataObject & operator=(const DataObject &rhs)
Assignment Operator.
Definition: DataObject.cpp:19
ObjectContainerBase is the base class for Gaudi container classes.
#define GAUDI_API
Definition: Kernel.h:71
A DataObject is the base class of any identifiable object on any data store.
Definition: DataObject.h:30