comparison OrthancServer/ParsedDicomFile.cpp @ 793:145604a97914

refactoring
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 06 May 2014 10:28:04 +0200
parents 111a1738e11e
children 437c4a83d2cc
comparison
equal deleted inserted replaced
792:111a1738e11e 793:145604a97914
1063 1063
1064 ParsedDicomFile::~ParsedDicomFile() 1064 ParsedDicomFile::~ParsedDicomFile()
1065 { 1065 {
1066 } 1066 }
1067 1067
1068
1069 void* ParsedDicomFile::GetDcmtkObject()
1070 {
1071 return file_.get();
1072 }
1073
1074
1075 ParsedDicomFile* ParsedDicomFile::Clone()
1076 {
1077 return new ParsedDicomFile(*file_);
1078 }
1068 } 1079 }