X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;ds=sidebyside;f=include%2Fpthreadwrapper%2Fnoncopyable.h;fp=include%2Fpthreadwrapper%2Fnoncopyable.h;h=0000000000000000000000000000000000000000;hb=dec33c63afafabf83c3039e916725cac6faef9b3;hp=9e6170186794172c3d7fe77d4d8ebeba950f6e2c;hpb=9b22dd53fe62e312c1647310b7ec43aa127090af;p=fms.git diff --git a/include/pthreadwrapper/noncopyable.h b/include/pthreadwrapper/noncopyable.h deleted file mode 100644 index 9e61701..0000000 --- a/include/pthreadwrapper/noncopyable.h +++ /dev/null @@ -1,21 +0,0 @@ -#ifndef _pthread_noncopyable_ -#define _pthread_noncopyable_ - -namespace PThread -{ - -class NonCopyable -{ -protected: - NonCopyable() {} - virtual ~NonCopyable() {} - -private: - // restrict copy and assignment - NonCopyable(const NonCopyable &rhs); - const NonCopyable &operator=(const NonCopyable &rhs); -}; - -} // namespace - -#endif // _pthread_noncopyable_