Files
cpp-thirdparty/winx64/bin/swigwin-4.0.0/Examples/ocaml/scoped_enum/foo.h
2019-08-04 21:38:19 -05:00

6 lines
109 B
C++

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