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