#include <map>#include <string>#include <iostream>

Go to the source code of this file.
Namespaces | |
| namespace | creaImageIO |
| namespace | creaImageIO::tree |
Typedefs | |
| typedef std::map< std::string, std::string > | creaImageIO::tree::AttributeMapType |
Functions | |
| std::ostream & | operator<< (std::ostream &s, const creaImageIO::tree::AttributeMapType &d) |
| std::ostream& operator<< | ( | std::ostream & | s, | |
| const creaImageIO::tree::AttributeMapType & | d | |||
| ) | [inline] |
Definition at line 26 of file creaImageIOTreeAttributeMapType.h.
{
creaImageIO::tree::AttributeMapType::const_iterator i;
for (i=d.begin();i!=d.end();++i)
{
s << "'" << i->first << "'='" << i->second << "'" << std::endl;
}
return s;
}
1.7.1