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