Introduced SwitchLayer which will form the basis of provided support for varients

This commit is contained in:
Robert Osfield
2008-08-27 10:13:30 +00:00
parent 9499cfa420
commit 95a359bdab
11 changed files with 372 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
#ifndef IVE_SWITCHLAYER
#define IVE_SWITCHLAYER 1
#include <osgTerrain/Layer>
#include "ReadWrite.h"
namespace ive
{
class SwitchLayer : public osgTerrain::SwitchLayer, public ReadWrite
{
public:
void write(DataOutputStream* out);
void read(DataInputStream* in);
};
}
#endif