Sha256: 063de07dd97f8f89f2be0a9fd15687f5d63c2eafbcc9b8a70d9b3cfe561aadfd
Contents?: true
Size: 443 Bytes
Versions: 4
Compression:
Stored size: 443 Bytes
Contents
/************************************ ************************************/ #ifndef LIMONP_NONCOPYABLE_H #define LIMONP_NONCOPYABLE_H #include <iostream> #include <string> namespace Limonp { class NonCopyable { protected: NonCopyable(){}; ~NonCopyable(){}; private: NonCopyable(const NonCopyable& ); const NonCopyable& operator=(const NonCopyable& ); }; } #endif
Version data entries
4 entries across 4 versions & 2 rubygems