source: experimental/TerrainTest/ModificationManager.h @ 274

Last change on this file since 274 was 272, checked in by Torben Dannhauer, 13 years ago
File size: 1.2 KB
Line 
1#pragma once
2/* -*-c++-*- osgVisual - Copyright (C) 2009-2011 Torben Dannhauer
3 *
4 * This library is based on OpenSceneGraph, open source and may be redistributed and/or modified under
5 * the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
6 * (at your option) any later version.  The full license is in LICENSE file
7 * included with this distribution, and on the openscenegraph.org website.
8 *
9 * osgVisual requires for some proprietary modules a license from the correspondig manufacturer.
10 * You have to aquire licenses for all used proprietary modules.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * OpenSceneGraph Public License for more details.
16*/
17
18#include "region.h"
19#include <osg/observer_ptr>
20
21
22class ModificationManager
23{
24public:
25        ~ModificationManager(){};
26
27        static ModificationManager* getInstance() {static ModificationManager instance; return &instance;}
28
29        //void addRoi();
30
31private:
32        ModificationManager(){};
33
34        ModificationManager(const ModificationManager& cc) {};
35
36
37
38};
Note: See TracBrowser for help on using the repository browser.