00001 #include "ScanResult.h" 00002 #include "ConfigurationVariable.h" 00003 00004 namespace SctData { 00005 00006 ScanResult::ScanResult(const ResultHeader& header, const ModuleConfiguration& moduleConfig, const ScanPoints& points) : 00007 header(header), moduleConfig(moduleConfig), points(points) 00008 { 00009 } 00010 00011 ScanResult::ScanResult(const ScanResult& copyMe) : 00012 header(copyMe.header), moduleConfig(copyMe.moduleConfig), points(copyMe.points) 00013 { 00014 } 00015 00016 //For the builders 00017 ScanResult::ScanResult() {} 00018 00019 }