mirror of
https://github.com/yanyiwu/cppjieba.git
synced 2025-07-18 00:00:12 +08:00
1. src/ -> include/cppjieba/ 2. src/limonp/ -> deps/limonp/ 3. server/husky -> deps/husky/ 4. test/unittest/gtest -> deps/gtest
22 lines
411 B
C++
22 lines
411 B
C++
/************************************
|
|
************************************/
|
|
#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
|