mirror of
https://github.com/zeldaret/ss
synced 2026-05-29 16:44:44 -04:00
20 lines
314 B
C++
20 lines
314 B
C++
#ifndef NW4R_UT_NON_COPYABLE_H
|
|
#define NW4R_UT_NON_COPYABLE_H
|
|
#include <nw4r/types_nw4r.h>
|
|
|
|
namespace nw4r {
|
|
namespace ut {
|
|
namespace {
|
|
|
|
class NonCopyable {
|
|
protected:
|
|
NonCopyable() {}
|
|
NonCopyable(const NonCopyable&) {}
|
|
~NonCopyable() {}
|
|
};
|
|
|
|
} // namespace
|
|
} // namespace ut
|
|
} // namespace nw4r
|
|
|
|
#endif |