NSMBW-Decomp
A decompilation of New Super Mario Bros. Wii
Loading...
Searching...
No Matches
ut_NonCopyable.h
1#ifndef NW4R_UT_NON_COPYABLE_H
2#define NW4R_UT_NON_COPYABLE_H
3#include <nw4r/types_nw4r.h>
4
5namespace nw4r {
6namespace ut {
7namespace {
8
9class NonCopyable {
10protected:
11 NonCopyable() {}
12 NonCopyable(const NonCopyable& /* rOther */) {}
13 ~NonCopyable() {}
14};
15
16} // namespace
17} // namespace ut
18} // namespace nw4r
19
20#endif
Debugging library which includes various utilities used by the rest of nw4r.
Definition ut_list.cpp:4