Merge pull request #940 from SpecLad:autolock

This commit is contained in:
Roman Donchenko 2013-06-04 17:50:31 +04:00 committed by OpenCV Buildbot
commit f527b6a93f

View File

@ -4813,6 +4813,9 @@ public:
~AutoLock() { mutex->unlock(); }
protected:
Mutex* mutex;
private:
AutoLock(const AutoLock&);
AutoLock& operator = (const AutoLock&);
};
}