OSSIM - Open Source Software Image Map  Version 1.9.0 (20180803)
Functions
ossimAigBounds.cpp File Reference
#include <ostream>
#include <ossim/support_data/ossimAigBounds.h>
#include <ossim/base/ossimEndian.h>

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &out, const ossimAigBounds &data)
 

Function Documentation

◆ operator<<()

std::ostream& operator<< ( std::ostream &  out,
const ossimAigBounds data 
)

Definition at line 14 of file ossimAigBounds.cpp.

References ossimAigBounds::ll_x, ossimAigBounds::ll_y, ossimAigBounds::ur_x, and ossimAigBounds::ur_y.

15 {
16  out << "ll_x: " << data.ll_x << std::endl
17  << "ll_y: " << data.ll_y << std::endl
18  << "ur_x: " << data.ur_x << std::endl
19  << "ur_y: " << data.ur_y;
20 
21  return out;
22 }