OSSIM - Open Source Software Image Map
Version 1.9.0 (20180803)
src
base
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
//*******************************************************************
24
void
ossimVrect::print
(
std::ostream
& os)
const
25
{
26
os <<
theUlCorner
<<
theLrCorner
;
27
}
28
29
//*******************************************************************
30
// friend function:
31
//*******************************************************************
32
std::ostream
&
operator<<
(
std::ostream
& os,
const
ossimVrect
& rect)
33
{
34
rect.
print
(os);
35
36
return
os;
37
}
38
39
ossimVrect::~ossimVrect
()
40
{
41
}
ossimVrect::theLrCorner
ossimDpt theLrCorner
Definition:
ossimVrect.h:92
ossimVrect::theUlCorner
ossimDpt theUlCorner
Definition:
ossimVrect.h:90
ossimVrect::print
void print(std::ostream &os) const
Definition:
ossimVrect.cpp:24
ossimVrect::~ossimVrect
~ossimVrect()
Definition:
ossimVrect.cpp:39
ossimVrect
Definition:
ossimVrect.h:25
ossimVrect.h
operator<<
std::ostream & operator<<(std::ostream &os, const ossimVrect &rect)
Definition:
ossimVrect.cpp:32
ossim::ostream
std::basic_ostream< char > ostream
Base class for char output streams.
Definition:
ossimIosFwd.h:23
Generated on Fri Aug 3 2018 08:46:55 for OSSIM - Open Source Software Image Map by
1.8.14