16 lines
233 B
C++
16 lines
233 B
C++
#ifndef IVE_UNIFORM
|
|
#define IVE_UNIFORM 1
|
|
|
|
#include <osg/Uniform>
|
|
#include "ReadWrite.h"
|
|
|
|
namespace ive{
|
|
class Uniform : public osg::Uniform {
|
|
public:
|
|
void write(DataOutputStream* out);
|
|
void read(DataInputStream* in);
|
|
};
|
|
}
|
|
|
|
#endif
|