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