Files
ss/include/nw4r/ut/ut_NonCopyable.h
Elijah Thomas 26af4db82d update from dtk-template - clangd :) (#66)
* update from dtk-template and start work towards using clangd

* include <a> -> "a"

* Update build.yml

* remove/add non-trivial class in union warning
2024-10-16 15:36:02 -04:00

21 lines
316 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