cHashMapWatcher< KeyT, ValueT, CmpT > Class Template Reference

#include <hashWatch.h>

List of all members.

Public Member Functions

 cHashMapWatcher (const char *name, UNORDERED_MAP< KeyT, ValueT, CmpT > &var)
const char * getClassName () const
virtual const char * getElemTypeName () const
virtual int size () const
virtual std::string at (int i) const
virtual std::string atIt () const

Protected Attributes

UNORDERED_MAP< KeyT, ValueT,
CmpT > & 
m
UNORDERED_MAP< KeyT, ValueT,
CmpT >::iterator 
it
int itPos
std::string classname

Detailed Description

template<class KeyT, class ValueT, class CmpT>
class cHashMapWatcher< KeyT, ValueT, CmpT >

Definition at line 122 of file hashWatch.h.


Constructor & Destructor Documentation

template<class KeyT, class ValueT, class CmpT>
cHashMapWatcher< KeyT, ValueT, CmpT >::cHashMapWatcher ( const char *  name,
UNORDERED_MAP< KeyT, ValueT, CmpT > &  var 
) [inline]

Definition at line 130 of file hashWatch.h.

00130                                                                                 : cStdVectorWatcherBase(name), m(var) {
00131             itPos=-1;
00132             classname = std::string("unordered_map<")+opp_typename(typeid(KeyT))+","+opp_typename(typeid(ValueT))+">";
00133         }


Member Function Documentation

template<class KeyT, class ValueT, class CmpT>
virtual std::string cHashMapWatcher< KeyT, ValueT, CmpT >::at ( int  i  )  const [inline, virtual]

Definition at line 137 of file hashWatch.h.

00137                                           {
00138             if (i==0) {
00139                 it=m.begin(); itPos=0;
00140             } else if (i==itPos+1 && it!=m.end()) {
00141                 ++it; ++itPos;
00142             } else {
00143                 it=m.begin();
00144                 for (int k=0; k<i && it!=m.end(); k++) ++it;
00145                 itPos=i;
00146             }
00147             if (it==m.end()) {
00148                 return std::string("out of bounds");
00149             }
00150             return atIt();
00151         }

template<class KeyT, class ValueT, class CmpT>
virtual std::string cHashMapWatcher< KeyT, ValueT, CmpT >::atIt (  )  const [inline, virtual]

Definition at line 152 of file hashWatch.h.

00152                                        {
00153             std::stringstream out;
00154             out << it->first << " ==> " << it->second;
00155             return out.str();
00156         }

template<class KeyT, class ValueT, class CmpT>
const char* cHashMapWatcher< KeyT, ValueT, CmpT >::getClassName (  )  const [inline]

Definition at line 134 of file hashWatch.h.

00134 {return classname.c_str();}

template<class KeyT, class ValueT, class CmpT>
virtual const char* cHashMapWatcher< KeyT, ValueT, CmpT >::getElemTypeName (  )  const [inline, virtual]

Definition at line 135 of file hashWatch.h.

00135 {return "struct pair<*,*>";}

template<class KeyT, class ValueT, class CmpT>
virtual int cHashMapWatcher< KeyT, ValueT, CmpT >::size (  )  const [inline, virtual]

Definition at line 136 of file hashWatch.h.

00136 {return m.size();}


Member Data Documentation

template<class KeyT, class ValueT, class CmpT>
std::string cHashMapWatcher< KeyT, ValueT, CmpT >::classname [protected]

Definition at line 128 of file hashWatch.h.

template<class KeyT, class ValueT, class CmpT>
UNORDERED_MAP<KeyT,ValueT,CmpT>::iterator cHashMapWatcher< KeyT, ValueT, CmpT >::it [mutable, protected]

Definition at line 126 of file hashWatch.h.

template<class KeyT, class ValueT, class CmpT>
int cHashMapWatcher< KeyT, ValueT, CmpT >::itPos [mutable, protected]

Definition at line 127 of file hashWatch.h.

template<class KeyT, class ValueT, class CmpT>
UNORDERED_MAP<KeyT,ValueT,CmpT>& cHashMapWatcher< KeyT, ValueT, CmpT >::m [protected]

Definition at line 125 of file hashWatch.h.


The documentation for this class was generated from the following file:
Generated on Wed May 26 16:21:16 2010 for OverSim by  doxygen 1.6.3