Added missing Camera.h and removed redundent CameraNode.h
This commit is contained in:
15
src/osgPlugins/ive/Camera.h
Normal file
15
src/osgPlugins/ive/Camera.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#ifndef IVE_CAMERA
|
||||
#define IVE_CAMERA 1
|
||||
|
||||
#include <osg/Camera>
|
||||
#include "ReadWrite.h"
|
||||
|
||||
namespace ive{
|
||||
class Camera : public osg::Camera, public ReadWrite {
|
||||
public:
|
||||
void write(DataOutputStream* out);
|
||||
void read(DataInputStream* in);
|
||||
};
|
||||
}
|
||||
|
||||
#endif
|
||||
@@ -1,15 +0,0 @@
|
||||
#ifndef IVE_CAMERANODE
|
||||
#define IVE_CAMERANODE 1
|
||||
|
||||
#include <osg/CameraNode>
|
||||
#include "ReadWrite.h"
|
||||
|
||||
namespace ive{
|
||||
class CameraNode : public osg::CameraNode, public ReadWrite {
|
||||
public:
|
||||
void write(DataOutputStream* out);
|
||||
void read(DataInputStream* in);
|
||||
};
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user