17 lines
256 B
C++
17 lines
256 B
C++
#include <XRA3D/event.h>
|
|
#include <XRA3D/camera.h>
|
|
|
|
class myEventProfil : public Xr_EventProfil
|
|
{
|
|
public:
|
|
myEventProfil();
|
|
~myEventProfil();
|
|
|
|
void input(Xr_Camera*);
|
|
virtual void execute(Xr_DevicesDesc*);
|
|
|
|
private:
|
|
Xr_Camera *m_camera;
|
|
};
|
|
|