Namespaces | Typedefs | Functions

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 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;
}