comparison Core/MultiThreading/ReaderWriterLock.h @ 942:b3f6fb1130cd

fixes thanks to cppcheck
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 25 Jun 2014 11:36:41 +0200
parents b2a62f22fbe8
children 6e7e5ed91c2d
comparison
equal deleted inserted replaced
941:83489fddd8c5 942:b3f6fb1130cd
32 32
33 #pragma once 33 #pragma once
34 34
35 #include "ILockable.h" 35 #include "ILockable.h"
36 36
37 #include <boost/noncopyable.hpp>
38
37 namespace Orthanc 39 namespace Orthanc
38 { 40 {
39 class ReaderWriterLock 41 class ReaderWriterLock : public boost::noncopyable
40 { 42 {
41 private: 43 private:
42 struct PImpl; 44 struct PImpl;
43 45
44 PImpl *pimpl_; 46 PImpl *pimpl_;