00001 #include "ScanResult.h"
00002 #include "ConfigurationVariable.h"
00003
00004 namespace SctData {
00005
00006 ScanResult::ScanResult(const ScanHeader& header, const ModuleConfiguration& moduleConfig, const ScanPoints& points) throw() :
00007 header(header), moduleConfig(moduleConfig), points(points)
00008 {
00009 }
00010
00011 ScanResult::ScanResult(const ScanResult& copyMe) throw() :
00012 header(copyMe.header), moduleConfig(copyMe.moduleConfig), points(copyMe.points)
00013 {
00014 }
00015
00016 ScanResult::~ScanResult() throw() {
00017 }
00018
00019
00020 ScanResult::ScanResult() throw() {}
00021
00022 }