Go to the documentation of this file.00001 #ifndef FCAM_DUMMY_SHOT
00002 #define FCAM_DUMMY_SHOT
00003 #include "../Shot.h"
00004
00010 namespace FCam { namespace Dummy {
00011
00013 enum TestPattern{
00014 BARS,
00015 CHECKERBOARD,
00016 FILE
00017 };
00018
00020 class Shot: public FCam::Shot {
00021 public:
00022
00023 TestPattern testPattern;
00024
00025 std::string srcFile;
00026
00027 Shot();
00028 Shot(const FCam::Shot &);
00029 Shot(const Shot &);
00030
00031 const Shot &operator=(const FCam::Shot &);
00032
00033 const Shot &operator=(const Shot &);
00034
00035 };
00036 }}
00037
00038 #endif