st_fw.h
Go to the documentation of this file.
1 /* Copyright (C) 2008 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 TimeSeriesIterator;
70  class TimeSeriesObservation;
71 
72  //Trajectory
73  class Trajectory;
74  class TrajectoryDataSet;
75  class TrajectoryDataSetInfo;
76  class TrajectoryIterator;
77  struct TrajectoryPatch;
78 
79  //Loader
80  class STDataLoader;
81  class STDataLoaderFromDS;
82  class STDataLoaderFromDSFactory;
83  class STDataLoaderFromMemDS;
84  class STDataLoaderFromMemDSFactory;
85  class STDataLoaderImpl;
86  class STDataLoaderImplFactory;
87 
88  } // end namespace st
89 } // end namespace te
90 
91 #endif // __TERRALIB_ST_INTERNAL_FW_H
92 
URI C++ Library.