Statistics
| Revision:

svn-gvsig-desktop / tags / v1_10_0_Build_1258 / libraries / libjni-readecw-linux / include / NCSExtents.h @ 42039

History | View | Annotate | Download (1.12 KB)

1 1448 igbrotru
/***************************************************************************
2
** Copyright 1989-2000 - Earth Resource Mapping Ltd.
3
** This document contains proprietary source code of
4
** Earth Resource Mapping Ltd, and can only be used under
5
** one of the three licenses as described in the
6
** license.txt file supplied with this distribution.
7
** See separate license.txt file for license details
8
** and conditions.
9
**
10
** This software is covered by US patent #6,442,298,
11
** #6,102,897 and #6,633,688.  Rights to use these patents
12
** is included in the license agreements.
13
**
14
** CLASS(ES):        CNCSExtent
15
** FILE:                NCSExtent.h
16
** CREATED:                18 Jan 2000
17
** AUTHOR:                Matthew Bardsley
18
** PURPOSE:                Holds definition of NCSExtent Class
19
** EDITS:
20
**
21
** CLASS NOTES:
22
***************************************************************************/
23
#if !defined(NCSEXTENT_H)
24
#define NCSEXTENT_H
25
26
#include "NCSPoint.h"
27
28
class NCS_EXPORT CNCSExtents
29
{
30
public:
31
        CNCSExtents(IEEE8 tlx = 0.0,
32
                           IEEE8 tly = 0.0,
33
                           IEEE8 brx = 0.0,
34
                           IEEE8 bry = 0.0);
35
        virtual ~CNCSExtents();
36
37
        CNCSPoint *m_pTL;
38
        CNCSPoint *m_pBR;
39
};
40
41
#endif // !defined(NCSEXTENT_H)