FlightGear next
terrainsampler.hxx
Go to the documentation of this file.
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
28namespace Environment {
29
30class TerrainSampler : public SGSubsystemGroup
31{
32public:
33 static TerrainSampler * createInstance( SGPropertyNode_ptr rootNode );
34};
35
36} // namespace
37#endif
static TerrainSampler * createInstance(SGPropertyNode_ptr rootNode)