mirror of
https://github.com/aantron/better-enums.git
synced 2025-12-08 01:36:44 +08:00
9 lines
125 B
C++
9 lines
125 B
C++
#ifndef _SHARED_H_
|
|
#define _SHARED_H_
|
|
|
|
#include <enum.h>
|
|
|
|
ENUM(Channel, int, Red, Green, Blue)
|
|
|
|
#endif // #ifndef _SHARED_H_
|