Sha256: ee1a84e2efd61776bece9dc92e1068c715abd10572c71bc190a3e2d56117ae6f
Contents?: true
Size: 411 Bytes
Versions: 11
Compression:
Stored size: 411 Bytes
Contents
/************************************ ************************************/ #ifndef LIMONP_NONCOPYABLE_H #define LIMONP_NONCOPYABLE_H namespace limonp { class NonCopyable { protected: NonCopyable() { } ~NonCopyable() { } private: NonCopyable(const NonCopyable& ); const NonCopyable& operator=(const NonCopyable& ); }; // class NonCopyable } // namespace limonp #endif // LIMONP_NONCOPYABLE_H
Version data entries
11 entries across 11 versions & 3 rubygems