4 #ifndef _H_SQIntMap_v1_H_
5 #define _H_SQIntMap_v1_H_
15 void identify(std::ostream& os = std::cout)
const;
20 bool empty()
const {
return _map.empty();}
21 size_t size()
const {
return _map.size();}
22 size_t count(
unsigned int idkey)
const {
return _map.count(idkey);}
28 size_t erase(
unsigned int idkey) {
30 return _map.erase(idkey);
38 Iter find(
unsigned int idkey) {
return _map.find(idkey);}
size_t erase(unsigned int idkey)
const PHObject * get(unsigned int idkey) const
Iter find(unsigned int idkey)
PHObject * insert(unsigned int idkey, const PHObject *item)
ConstIter find(unsigned int idkey) const
SQIntMap_v1 & operator=(const SQIntMap_v1 &map)
void identify(std::ostream &os=std::cout) const
size_t count(unsigned int idkey) const
int isValid() const
isValid returns non zero if object contains vailid data
A general-purpose SQ interface class that holds a list of PHObjects with key = integer.
std::map< unsigned int, PHObject * > ObjectMap
ObjectMap::const_iterator ConstIter