00001 #include <FCam/Dummy/Shot.h>
00002
00003 namespace FCam { namespace Dummy {
00004 Shot::Shot(): FCam::Shot(), testPattern(BARS), srcFile("") {}
00005 Shot::Shot(const FCam::Shot &shot): FCam::Shot(shot), testPattern(BARS), srcFile("") {}
00006 Shot::Shot(const Shot &shot): FCam::Shot(shot), testPattern(shot.testPattern), srcFile(shot.srcFile) {}
00007
00008 const Shot &Shot::operator=(const FCam::Shot &shot) {
00009 FCam::Shot::operator=(shot);
00010 testPattern = BARS;
00011 srcFile = "";
00012 return *this;
00013 }
00014
00015 const Shot &Shot::operator=(const Shot &shot) {
00016 FCam::Shot::operator=(shot);
00017 testPattern = shot.testPattern;
00018 srcFile = shot.srcFile;
00019 return *this;
00020 }
00021 }}