OSSIM - Open Source Software Image Map  Version 1.9.0 (20180803)
ossimVrect.cpp
Go to the documentation of this file.
1 //*******************************************************************
2 // Copyright (C) 2000 ImageLinks Inc.
3 //
4 // License: LGPL
5 //
6 // See LICENSE.txt file in the top level directory for more details.
7 //
8 // Author: Garrett Potts
9 //
10 // Description:
11 //
12 // Contains class declaration for vrect.
13 // Container class for four double points representing a rectangle
14 // where y is up
15 //
16 //*******************************************************************
17 // $Id: ossimVrect.cpp 9094 2006-06-13 19:12:40Z dburken $
18 
19 #include <ossim/base/ossimVrect.h>
20 
21 //*******************************************************************
22 // Public Method:
23 //*******************************************************************
25 {
26  os << theUlCorner << theLrCorner;
27 }
28 
29 //*******************************************************************
30 // friend function:
31 //*******************************************************************
33 {
34  rect.print(os);
35 
36  return os;
37 }
38 
40 {
41 }
ossimDpt theLrCorner
Definition: ossimVrect.h:92
ossimDpt theUlCorner
Definition: ossimVrect.h:90
void print(std::ostream &os) const
Definition: ossimVrect.cpp:24
std::ostream & operator<<(std::ostream &os, const ossimVrect &rect)
Definition: ossimVrect.cpp:32
std::basic_ostream< char > ostream
Base class for char output streams.
Definition: ossimIosFwd.h:23