mFrame
載入中...
搜尋中...
無符合項目
Inverted.h
1
7#ifndef CHIP_A6BB2BF4_A8FE_4BCB_8DB8_22BA2C05E1CB
8#define CHIP_A6BB2BF4_A8FE_4BCB_8DB8_22BA2C05E1CB
9
10/* ***************************************************************************************
11 * Include
12 */
13
14//----------------------------------------------------------------------------------------
15#include "mframe.h"
16
17//----------------------------------------------------------------------------------------
18
19/* ***************************************************************************************
20 * Namespace
21 */
22namespace chip::port {
23 enum struct Inverted : bool;
24
25 constexpr bool operator+(Inverted e) {
26 return static_cast<bool>(e);
27 }
28} // namespace chip::port
29
30/* ***************************************************************************************
31 * Class/Interface/Struct/Enum
32 */
33enum struct chip::port::Inverted : bool {
34 NORMAL = 0U,
35 INVERT = 1U
36};
37
38/* ***************************************************************************************
39 * End of file
40 */
41
42#endif /* CHIP_A6BB2BF4_A8FE_4BCB_8DB8_22BA2C05E1CB */
Definition Config.h:36
Inverted
Definition Inverted.h:33