-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEnumOperators.h
50 lines (48 loc) · 1.08 KB
/
EnumOperators.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
* Copyright (C) fastman92 <[email protected]>, website: http://fastman92.com
* Licensed under the MIT License, see LICENSE at top level directory.
*
*/
#pragma once
#define DEFINE_ENUM_OPERATORS(type) \
/* Prefix increment */ \
inline type& operator++(type& game) \
{ \
game = static_cast<type>(game + 1); \
return game; \
} \
\
/* Postfix increment */ \
inline type operator++(type& game, int) \
{ \
type copy = game; \
++game; \
return copy; \
} \
\
/* Prefix decrement */ \
inline type& operator--(type& game) \
{ \
game = static_cast<type>(game - 1); \
return game; \
} \
\
/* Postfix decrement */ \
inline type operator--(type& game, int) \
{ \
type copy = game; \
--game; \
return copy; \
} \
\
/* Addition operator */ \
inline type operator+(const type &first, const int &second) \
{ \
return static_cast<type>((int)first + second); \
} \
\
/* Subtraction operator */ \
inline type operator-(const type &first, const int &second) \
{ \
return static_cast<type>((int)first + second); \
}