Go to the documentation of this file.00001 #ifndef FCAM_N900_FRAME_H
00002 #define FCAM_N900_FRAME_H
00003
00008 #include "../Frame.h"
00009 #include "Platform.h"
00010
00011 namespace FCam { namespace N900 {
00012
00013 struct _Frame : public FCam::_Frame {
00014
00015 FCam::Shot _shot;
00016 const FCam::Shot &shot() const { return _shot; }
00017 const FCam::Shot &baseShot() const { return shot(); }
00018
00019 const FCam::Platform &platform() const {return ::FCam::N900::Platform::instance();}
00020 };
00021
00022
00028 class Frame : public FCam::Frame {
00029 public:
00030 Frame(_Frame *f=NULL) : FCam::Frame(f) {}
00031 ~Frame();
00032 };
00033 }}
00034
00035 #endif