comparison OrthancServer/DicomDirWriter.h @ 1303:bba8a47922d1

cppcheck
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 10 Feb 2015 16:47:24 +0100
parents 6e7e5ed91c2d
children b1291df2f780
comparison
equal deleted inserted replaced
1302:5fe254fb1c93 1303:bba8a47922d1
32 32
33 #pragma once 33 #pragma once
34 34
35 #include "ParsedDicomFile.h" 35 #include "ParsedDicomFile.h"
36 36
37 #include <boost/noncopyable.hpp>
38
37 namespace Orthanc 39 namespace Orthanc
38 { 40 {
39 class DicomDirWriter 41 class DicomDirWriter : public boost::noncopyable
40 { 42 {
41 private: 43 private:
42 class PImpl; 44 class PImpl;
43 PImpl* pimpl_; 45 PImpl* pimpl_;
44 46