Files
ANSLibs/swig-4.3.0/Examples/ocaml/scoped_enum/foo.h

6 lines
109 B
C++

namespace foo {
enum Bar { Tag1, Tag2 };
static void f( Bar b ) { printf( "b = %d\n", (int)b ); }
}