OSSIM - Open Source Software Image Map  Version 1.9.0 (20180803)
Macros | Functions
ossimIrect.cpp File Reference
#include <ostream>
#include <sstream>
#include <ossim/base/ossimIrect.h>
#include <ossim/base/ossimDrect.h>
#include <ossim/base/ossimKeywordlist.h>
#include <ossim/base/ossimString.h>
#include <ossim/base/ossimKeywordNames.h>

Go to the source code of this file.

Macros

#define MAX(x, y)   ((x)>(y)?(x):(y))
 
#define MIN(x, y)   ((x)>(y)?(y):(x))
 

Functions

std::ostream & operator<< (std::ostream &os, const ossimIrect &rect)
 

Macro Definition Documentation

◆ MAX

#define MAX (   x,
  y 
)    ((x)>(y)?(x):(y))

Definition at line 27 of file ossimIrect.cpp.

Referenced by ossimIrect::clipToRect().

◆ MIN

#define MIN (   x,
  y 
)    ((x)>(y)?(y):(x))

Definition at line 28 of file ossimIrect.cpp.

Referenced by ossimIrect::clipToRect().

Function Documentation

◆ operator<<()

std::ostream& operator<< ( std::ostream &  os,
const ossimIrect rect 
)

Definition at line 491 of file ossimIrect.cpp.

References ossimIrect::print().

492 {
493  rect.print(os);
494 
495  return os;
496 }
void print(std::ostream &os) const
Definition: ossimIrect.cpp:483