mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-02 03:47:53 +08:00
9697f95b8f
This reverts commit 15d999759e
.
17 lines
282 B
C++
17 lines
282 B
C++
#pragma once
|
|
#include "../acl_cpp_define.hpp"
|
|
|
|
namespace acl {
|
|
|
|
class ACL_CPP_API noncopyable
|
|
{
|
|
protected:
|
|
noncopyable() {}
|
|
~noncopyable() {}
|
|
private:
|
|
noncopyable( const noncopyable& );
|
|
const noncopyable& operator=( const noncopyable& );
|
|
};
|
|
|
|
} // namespace acl
|