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