OpenSceneGraph/src/osgPlugins/ive/PagedLOD.h
Robert Osfield a7b7d6cefc Added support for PagedLOD node into .ive format and added support for
Enabled texture object reuse by setting an expiry delay in the TextureObjectManager
of 10 seconds - done for both osgDB::DatabasePager and TXP plugin.
2003-07-23 15:52:05 +00:00

16 lines
256 B
C++

#ifndef IVE_PAGEDLOD
#define IVE_PAGEDLOD 1
#include <osg/PagedLOD>
#include "ReadWrite.h"
namespace ive{
class PagedLOD : public osg::PagedLOD, public ReadWrite {
public:
void write(DataOutputStream* out);
void read(DataInputStream* in);
};
}
#endif