Commit 6554d7ef authored by captainwong's avatar captainwong

use c++11 new feature 'default' and 'delete' to refactor

parent 0220be35
......@@ -28,9 +28,8 @@ public:
#define NAMESPACE_END };
#define DECLARE_UNCOPYABLE(classname) \
private:\
classname(const classname&) {}\
classname& operator=(const classname&) {}
classname(const classname&) = delete; \
classname& operator=(const classname&) = delete;
#define DECLARE_SINGLETON(class_name) \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment