mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-29 18:30:37 +00:00
8c95516224
- updaterevision for automated revision string generation - re2c as a prerequisite to use sc_man in the future - zipdir to automatically generate an engine resource file.
11 lines
294 B
C
11 lines
294 B
C
#ifndef _RE2C_UTIL_FORBID_COPY_
|
|
#define _RE2C_UTIL_FORBID_COPY_
|
|
|
|
// must be used at the end of class definition
|
|
// (since this macro changes scope to private)
|
|
#define FORBID_COPY(type) \
|
|
private: \
|
|
type (const type &); \
|
|
type & operator = (const type &)
|
|
|
|
#endif // _RE2C_UTIL_FORBID_COPY_
|