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