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 {
00011 namespace Dummy {
00012
00014 enum TestPattern {
00015 BARS,
00016 CHECKERBOARD,
00017 FILE
00018 };
00019
00021 class Shot: public FCam::Shot {
00022 public:
00023
00024 TestPattern testPattern;
00025
00026 std::string srcFile;
00027
00028 Shot();
00029 Shot(const FCam::Shot &);
00030 Shot(const Shot &);
00031
00032 const Shot &operator=(const FCam::Shot &);
00033
00034 const Shot &operator=(const Shot &);
00035
00036 };
00037 }
00038 }
00039
00040 #endif