OverSim
RegionDataContainer.h File Reference
#include <ostream>
#include <oversim_mapset.h>

Go to the source code of this file.

Classes

class  RegionDataContainer

Typedefs

typedef UNORDERED_MAP< long, int > regionCountMap
 .h

Functions

std::ostream & operator<< (std::ostream &os, const regionCountMap &info)

Typedef Documentation

typedef UNORDERED_MAP<long, int> regionCountMap

.h

Author
Daniel Lienert

Definition at line 32 of file RegionDataContainer.h.

Function Documentation

std::ostream& operator<< ( std::ostream &  os,
const regionCountMap info 
)

Definition at line 56 of file RegionDataContainer.cc.

{
for (regionCountMap::const_iterator it = map.begin(); it != map.end(); ++it) {
os << it->first << it->second;
}
return os;
}