19 lines
260 B
C++
19 lines
260 B
C++
#ifndef IVE_OBJECT
|
|
#define IVE_OBJECT 1
|
|
|
|
|
|
#include <osg/Object>
|
|
#include "ReadWrite.h"
|
|
|
|
namespace ive{
|
|
|
|
class IVE_EXPORT Object : public ReadWrite, public osg::Object{
|
|
public:
|
|
void write(DataOutputStream* out);
|
|
void read(DataInputStream* out);
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|