Sound Bakery  v0.1.0
Open-source audio middleware for games
Loading...
Searching...
No Matches
macros.h
1#pragma once
2
3#define NOT_COPYABLE(ObjectType) \
4 ObjectType(const ObjectType&) = delete; \
5 ObjectType(const ObjectType&&) = delete; \
6 ObjectType& operator=(const ObjectType&) = delete; \
7 ObjectType& operator=(const ObjectType&&) = delete;