Files
OpenSceneGraph/src/osgPlugins/ive/FragmentProgram.h
2004-03-09 14:57:45 +00:00

16 lines
317 B
C++

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