summaryrefslogtreecommitdiff
path: root/include/nw4r/ut/ut_NonCopyable.h
blob: 64c1d1419da0f835b9b36867d0e0e9e01194c05d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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