mirror of
https://github.com/aantron/better-enums.git
synced 2025-12-06 08:46:42 +08:00
To avoid problems with warnings in CxxTest, the extra warnings are enabled during one test (linking) that does not use CxxTest. Resolves #16.
9 lines
126 B
C
9 lines
126 B
C
#ifndef SHARED_H
|
|
#define SHARED_H
|
|
|
|
#include <enum.h>
|
|
|
|
BETTER_ENUM(Channel, int, Red, Green, Blue)
|
|
|
|
#endif // #ifndef SHARED_H
|