CRaster.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2008 National Institute For Space Research (INPE) - Brazil.
3 
4  This file is part of the TerraLib - a Framework for building GIS enabled
5  applications.
6 
7  TerraLib is free software: you can redistribute it and/or modify
8  it under the terms of the GNU Lesser General Public License as published by
9  the Free Software Foundation, either version 3 of the License,
10  or (at your option) any later version.
11 
12  TerraLib is distributed in the hope that it will be useful,
13  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  GNU Lesser General Public License for more details.
16 
17  You should have received a copy of the GNU Lesser General Public License
18  along with TerraLib. See COPYING. If not, write to
19  TerraLib Team at <terralib-team@terralib.org>.
20 */
21 
22 //TerraLib
23 #include "../Config.h"
24 #include "../CTypes.h"
25 
26 #ifdef __cplusplus
27 extern "C"{
28 #endif
29 
30 extern TECAPIEXPORT TeRaster* TeOpenRaster(const char* path);
32 extern TECAPIEXPORT const char* TeRasterToString(const TeRaster* rst);
33 extern TECAPIEXPORT const TeBand* TeRasterGetBand(const TeRaster* rst, int band);
34 
35 #ifdef __cplusplus
36 }
37 #endif
unsigned int band
TECAPIEXPORT TeRaster * TeOpenRaster(const char *path)
Definition: CRaster.cpp:34
TECAPIEXPORT const TeBand * TeRasterGetBand(const TeRaster *rst, int band)
Definition: CRaster.cpp:52
struct TeBand_t TeBand
Definition: CTypes.h:60
TECAPIEXPORT void TeDestroyRaster(TeRaster *rst)
Definition: CRaster.cpp:47
TECAPIEXPORT const char * TeRasterToString(const TeRaster *rst)
Definition: CRaster.cpp:39
struct TeRaster_t TeRaster
Definition: CTypes.h:69