16 lines
273 B
C++
16 lines
273 B
C++
#ifndef IVE_VIEWPOINT
|
|
#define IVE_VIEWPOINT 1
|
|
|
|
#include <osgfIVE/ViewPoint>
|
|
#include <ive/ReadWrite.h>
|
|
|
|
namespace ive{
|
|
class ViewPoint : public osgfIVE::ViewPoint, public ReadWrite {
|
|
public:
|
|
void write(DataOutputStream* out);
|
|
void read(DataInputStream* in);
|
|
};
|
|
}
|
|
|
|
#endif
|