Added preliminary ProxLayer and DataSetLayer in GDAL plugin to aid integration

of GDAL reading into osgTerrain.
This commit is contained in:
Robert Osfield
2007-08-29 10:52:03 +00:00
parent f6650dd3bf
commit 71e7a65cca
5 changed files with 149 additions and 2 deletions

View File

@@ -286,6 +286,25 @@ class OSGTERRAIN_EXPORT CompositeLayer : public Layer
Layers _layers;
};
class OSGTERRAIN_EXPORT ProxyLayer : public Layer
{
public:
ProxyLayer();
/** Copy constructor using CopyOp to manage deep vs shallow copy.*/
ProxyLayer(const ProxyLayer& proxyLayer,const osg::CopyOp& copyop=osg::CopyOp::SHALLOW_COPY);
META_Object(osgTerrain, ProxyLayer);
protected:
virtual ~ProxyLayer() {}
};
}
#endif