comparison OrthancServer/ParsedDicomFile.cpp @ 792:111a1738e11e

refactoring
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 06 May 2014 09:57:39 +0200
parents 381f90e2b69d
children 145604a97914
comparison
equal deleted inserted replaced
791:381f90e2b69d 792:111a1738e11e
1051 else 1051 else
1052 { 1052 {
1053 Setup(&content[0], content.size()); 1053 Setup(&content[0], content.size());
1054 } 1054 }
1055 } 1055 }
1056
1057
1058 ParsedDicomFile::ParsedDicomFile(DcmFileFormat& other) :
1059 file_(dynamic_cast<DcmFileFormat*>(other.clone()))
1060 {
1061 }
1062
1063
1064 ParsedDicomFile::~ParsedDicomFile()
1065 {
1066 }
1067
1056 } 1068 }