1 | #include <fstream.hfa>
|
---|
2 | #include <enum.hfa>
|
---|
3 | #include <string.hfa>
|
---|
4 |
|
---|
5 | forall( E, V | TypedEnum( E, V ) | { string str( V ); } ) // routine to format value}$
|
---|
6 | string format_enum( E e ) {
|
---|
7 | return label( e ) + '(' + str( value( e ) ) + ')'; // "label( value )"
|
---|
8 | }
|
---|
9 | enum(size_t) RGB { Red = 0xFF0000, Green = 0x00FF00, Blue = 0x0000FF };
|
---|
10 | // string library has conversion from size_t to string
|
---|
11 |
|
---|
12 | struct color_code { int R, G, B; };
|
---|
13 | enum(color_code) Rainbow {
|
---|
14 | Red = {255, 0, 0}, Orange = {255, 127, 0}, Yellow = {255, 255, 0}, Green = {0, 255, 0}, // ...
|
---|
15 | };
|
---|
16 | string str( color_code cc ) with( cc ) {
|
---|
17 | return str( R ) + ',' + str( G ) + ',' + str( B ); // "R,G,B"
|
---|
18 | }
|
---|
19 |
|
---|
20 | enum Fruit { Apple, Banana, Cherry }; // C enum
|
---|
21 | const char * label( Fruit f ) {
|
---|
22 | static const char * labels[] = { "Apple", "Banana", "Cherry" };
|
---|
23 | return labels[f];
|
---|
24 | }
|
---|
25 | int posn( Fruit f ) { return f; }
|
---|
26 | int value( Fruit f ) {
|
---|
27 | static const char values[] = { 'a', 'b', 'c' };
|
---|
28 | return values[f];
|
---|
29 | }
|
---|
30 | string str( int f ) {
|
---|
31 | string s = (char)f;
|
---|
32 | return s;
|
---|
33 | }
|
---|
34 | int main() {
|
---|
35 | sout | format_enum( RGB.Green ); // "Green(65280)"}$
|
---|
36 | sout | format_enum( Rainbow.Green ); // "Green(0,255,0)"}$
|
---|
37 | sout | format_enum( Cherry ); // "Cherry(c)"
|
---|
38 | }
|
---|