PFUNC 1.0
pfunc/no_copy.hpp
Go to the documentation of this file.
00001 #ifndef PFUNC_NO_COPY_HPP
00002 #define PFUNC_NO_COPY_HPP
00003 
00008 namespace pfunc { namespace detail {
00013   struct no_copy {
00014     private:
00019     no_copy (const no_copy& other);
00020 
00025     void operator= (const no_copy& other);
00026 
00027     public:
00032     no_copy () {} 
00033   };
00034 } /* namespace detail */ } /* namespace pfunc */
00035 
00036 #endif // PFUNC_NO_COPY_HPP