source: experimental/TerrainTest/ModificationVisitor.h @ 252

Last change on this file since 252 was 252, checked in by Torben Dannhauer, 13 years ago

Pseudoloader works!

Next step: learn how to perform mdifications in the pseudoloader.

File size: 344 bytes
Line 
1#pragma once
2
3#include <osg/Notify>
4#include <osg/NodeVisitor>
5#include <osg/PagedLOD>
6
7class ModificationVisitor : public osg::NodeVisitor
8{
9public:
10        ModificationVisitor(std::string extensionToSet);
11        virtual void apply( osg::Node& node );
12        virtual void apply( osg::PagedLOD& pNode );
13
14private:
15        std::string _extensionToSet;
16};
Note: See TracBrowser for help on using the repository browser.