12345678910111213141516171819202122 |
- /************************************
- ************************************/
- #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
|