]> git.mxchange.org Git - flightgear.git/blob - src/Environment/terrainsampler.hxx
#84: John Denker: Set correct file modes
[flightgear.git] / src / Environment / terrainsampler.hxx
1 // terrainsampler.hxx -- 
2 //
3 // Written by Torsten Dreyer, started July 2010
4 // Based on local weather implementation in nasal from 
5 // Thorsten Renk
6 //
7 // Copyright (C) 2010  Curtis Olson
8 //
9 // This program is free software; you can redistribute it and/or
10 // modify it under the terms of the GNU General Public License as
11 // published by the Free Software Foundation; either version 2 of the
12 // License, or (at your option) any later version.
13 //
14 // This program is distributed in the hope that it will be useful, but
15 // WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 // General Public License for more details.
18 //
19 // You should have received a copy of the GNU General Public License
20 // along with this program; if not, write to the Free Software
21 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
22 //
23 #ifndef _TERRAIN_SAMPLER_HXX
24 #define _TERRAIN_SAMPLER_HXX
25
26 #include <simgear/structure/subsystem_mgr.hxx>
27
28 namespace Environment {
29 class TerrainSampler : public SGSubsystemGroup
30 {
31 public:
32         static TerrainSampler * createInstance( SGPropertyNode_ptr rootNode );
33 };
34
35 } // namespace
36 #endif