92 lines
2.3 KiB
C++
92 lines
2.3 KiB
C++
// This code implementation is the intellectual property of
|
|
// the GEANT4 collaboration.
|
|
//
|
|
// By copying, distributing or modifying the Program (or any work
|
|
// based on the Program) you indicate your acceptance of this statement,
|
|
// and all its terms.
|
|
//
|
|
// $Id: tpordvec.h,v 1.7 1999/11/26 17:17:57 gcosmo Exp $
|
|
// GEANT4 tag $Name: geant4-03-00 $
|
|
//
|
|
//
|
|
//---------------------------------------------------------------
|
|
// GEANT 4 class header file
|
|
//
|
|
// G4RWTPtrOrderedVector
|
|
//
|
|
// Class description:
|
|
//
|
|
// STL wrapper class for Pointer Ordered arrays. It implements
|
|
// Rogue Wave RWTPtrOrderedVector signature but intrinsically
|
|
// using STL vector.
|
|
|
|
//---------------------------------------------------------------
|
|
|
|
#ifndef __tpordvec
|
|
#define __tpordvec
|
|
|
|
#include "g4std/vector"
|
|
#include "g4std/set"
|
|
#include "g4std/functional"
|
|
#include "g4rw/defs.h"
|
|
|
|
template<class T>
|
|
class G4RWTPtrOrderedVector : public G4std::vector<T*>
|
|
{
|
|
typedef G4std::vector<T*> std_pvector;
|
|
typedef typename std_pvector::iterator iterator;
|
|
typedef typename std_pvector::const_iterator const_iterator;
|
|
|
|
public:
|
|
|
|
G4RWTPtrOrderedVector(size_t capacity=G4RWDEFAULT_CAPACITY);
|
|
G4RWTPtrOrderedVector(const G4RWTPtrOrderedVector<T>&);
|
|
virtual ~G4RWTPtrOrderedVector();
|
|
|
|
inline G4RWTPtrOrderedVector<T>& operator=(const G4RWTPtrOrderedVector<T>&);
|
|
|
|
inline T*& operator()(size_t);
|
|
inline T* const& operator()(size_t) const;
|
|
inline T*& operator[](size_t);
|
|
inline T* const& operator[](size_t) const;
|
|
|
|
void clearAndDestroy();
|
|
void clear();
|
|
|
|
size_t index (const T*) const;
|
|
void resize (size_t);
|
|
inline void insert (T*);
|
|
void insertAt (size_t, T*);
|
|
size_t occurrencesOf (const T*) const;
|
|
|
|
T* remove (const T*);
|
|
size_t removeAll (const T*);
|
|
T* removeAt (size_t);
|
|
T* removeFirst ();
|
|
T* removeLast ();
|
|
|
|
T* find (const T*) const;
|
|
inline size_t entries() const;
|
|
inline void append (T*);
|
|
inline size_t length() const;
|
|
inline T*& at (size_t);
|
|
inline T*const& at (size_t) const;
|
|
G4bool contains (const T*) const;
|
|
inline G4bool isEmpty() const;
|
|
|
|
inline T* first() const;
|
|
inline T* last() const;
|
|
inline void prepend(T* const);
|
|
|
|
private:
|
|
|
|
size_t rwsize;
|
|
|
|
};
|
|
|
|
// Include actual implementations of templated class methods.
|
|
|
|
#include "g4rw/tpordvec.icc"
|
|
|
|
#endif
|