mirror of
https://github.com/yanyiwu/cppjieba.git
synced 2025-07-18 00:00:12 +08:00
23 lines
443 B
C++
23 lines
443 B
C++
/************************************
|
|
************************************/
|
|
#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
|