OSSIM - Open Source Software Image Map  Version 1.9.0 (20180803)
Functions
ossimXmlAttribute.cpp File Reference
#include <iostream>
#include <sstream>
#include <ossim/base/ossimXmlAttribute.h>
#include <ossim/base/ossimNotifyContext.h>

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &os, const ossimXmlAttribute *xml_attr)
 

Function Documentation

◆ operator<<()

std::ostream& operator<< ( std::ostream &  os,
const ossimXmlAttribute xml_attr 
)

Definition at line 153 of file ossimXmlAttribute.cpp.

References ossimXmlAttribute::theName, and ossimXmlAttribute::theValue.

154 {
155  os << " " << xml_attr->theName << "=\"" << xml_attr->theValue << "\"";
156 
157  return os;
158 }