creaImageIO_lib
creaImageIOTreeAttributeMapType.h File Reference
#include <map>
#include <string>
#include <iostream>
Include dependency graph for creaImageIOTreeAttributeMapType.h:
This graph shows which files directly or indirectly include this file:

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)
 

Function Documentation

std::ostream& operator<< ( std::ostream &  s,
const creaImageIO::tree::AttributeMapType d 
)
inline

Definition at line 53 of file creaImageIOTreeAttributeMapType.h.

55 {
56  creaImageIO::tree::AttributeMapType::const_iterator i;
57  for (i=d.begin();i!=d.end();++i)
58  {
59  s << "'" << i->first << "'='" << i->second << "'" << std::endl;
60  }
61  return s;
62 }