Overview Tutorial API reference Examples Build Download | ZmqMessage 0.1 - 21 Oct 2011 |
00001 00009 #ifndef ZMQMESSAGE_NONCOPYABLE_HPP_ 00010 #define ZMQMESSAGE_NONCOPYABLE_HPP_ 00011 00012 namespace ZmqMessage 00013 { 00014 namespace Private 00015 { 00024 class NonCopyable 00025 { 00026 protected: 00027 NonCopyable() {} 00028 ~NonCopyable() {} 00029 private: 00030 NonCopyable(NonCopyable const&); 00031 NonCopyable& operator=(NonCopyable const&); 00032 }; 00033 } 00034 } 00035 00036 #endif // ZMQMESSAGE_NONCOPYABLE_HPP_ 00037