All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
st_fw.h
Go to the documentation of this file.
1 /* Copyright (C) 2008-2011 National Institute For Space Research (INPE) - Brazil.
2 
3  This file is part of the TerraLib - a Framework for building GIS enabled applications.
4 
5  TerraLib is free software: you can redistribute it and/or modify
6  it under the terms of the GNU General Public License as published by
7  the Free Software Foundation, either version 3 of the License,
8  or (at your option) any later version.
9 
10  TerraLib is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  GNU General Public License for more details.
14 
15  You should have received a copy of the GNU General Public License
16  along with TerraLib. See COPYING. If not, write to
17  TerraLib Team at <terralib-team@terralib.org>.
18  */
19 
20 /*!
21  \file st_fw.h
22 
23  \brief Forward declarations for the ST module.
24 */
25 
26 #ifndef __TERRALIB_ST_INTERNAL_FW_H
27 #define __TERRALIB_ST_INTERNAL_FW_H
28 
29 // Forward declarations
30 namespace te
31 {
32  namespace st
33  {
34  //Coverage
35  class Coverage;
36  class PointCoverage;
37  class RasterCoverage;
38  class CoverageSeries;
39  class CoverageDataSetInfo;
40  class PointCoverageDataSetInfo;
41  class RasterCoverageDataSetInfo;
42  class CoverageSeriesIterator;
43  class PointCoverageIterator;
44 
45  //Event and Object
46  class Event;
47  class Object;
48 
49  //Interpolators
50  class AbstractCoverageSeriesInterp;
51  class AbstractPointCoverageInterp;
52  class AbstractTimeSeriesInterp;
53  class AbstractTrajectoryInterp;
54  class IDWInterpolator;
55  class NearestCoverageAtTimeInterp;
56  class NearestGeometryAtTimeInterp;
57  class NearestValueAtTimeInterp;
58 
59  //Observations
60  class Observation;
61  class ObservationDataSet;
62  class ObservationDataSetInfo;
63  class ObservationDataSetType;
64 
65  //Time Series
66  class TimeSeries;
67  class TimeSeriesDataSet;
68  class TimeSeriesDataSetInfo;
69  class TimeSeriesDataSetType;
70  class TimeSeriesIterator;
71  class TimeSeriesObservation;
72 
73  //Trajectory
74  class Trajectory;
75  class TrajectoryDataSet;
76  class TrajectoryDataSetInfo;
77  class TrajectoryDataSetType;
78  class TrajectoryIterator;
79  struct TrajectoryPatch;
80 
81  //Loader
82  class STDataLoader;
83  class STDataLoaderFromDS;
84  class STDataLoaderFromDSFactory;
85  class STDataLoaderFromMemDS;
86  class STDataLoaderFromMemDSFactory;
87  class STDataLoaderImpl;
88  class STDataLoaderImplFactory;
89 
90  } // end namespace st
91 } // end namespace te
92 
93 #endif // __TERRALIB_ST_INTERNAL_FW_H
94