diff options
author | bunnei <ericbunnie@gmail.com> | 2014-04-05 21:22:11 +0200 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-04-05 21:22:11 +0200 |
commit | 925a894c1b04935772bc3eea904e81c8bef7df13 (patch) | |
tree | b68a322709ecb3700cdba5a3f042148710b81b7d /src | |
parent | added LCD logger (diff) | |
download | yuzu-925a894c1b04935772bc3eea904e81c8bef7df13.tar yuzu-925a894c1b04935772bc3eea904e81c8bef7df13.tar.gz yuzu-925a894c1b04935772bc3eea904e81c8bef7df13.tar.bz2 yuzu-925a894c1b04935772bc3eea904e81c8bef7df13.tar.lz yuzu-925a894c1b04935772bc3eea904e81c8bef7df13.tar.xz yuzu-925a894c1b04935772bc3eea904e81c8bef7df13.tar.zst yuzu-925a894c1b04935772bc3eea904e81c8bef7df13.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/common/src/common.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/common/src/common.h b/src/common/src/common.h index 1ca34e467..3b71d9b3d 100644 --- a/src/common/src/common.h +++ b/src/common/src/common.h @@ -163,4 +163,9 @@ enum EMUSTATE_CHANGE EMUSTATE_CHANGE_STOP }; +// This should be used in the private: declarations for a class +#define DISALLOW_COPY_AND_ASSIGN(TypeName) \ + TypeName(const TypeName&); \ + void operator=(const TypeName&) + #endif // _COMMON_H_ |