Sign in
◑
Theme
fuchsia
/
third_party
/
swig
/
refs/heads/main
/
.
/
Examples
/
lua
/
enum
/
example.h
blob: c3855d1368ebb0a8d8adf8a42f6812bbb9771b8c [
file
] [
edit
]
enum
color
{
RED
,
BLUE
,
GREEN
};
class
Foo
{
public
:
Foo
()
{
}
enum
speed
{
IMPULSE
,
WARP
,
LUDICROUS
};
void
enum_test
(
speed s
);
};
void
enum_test
(
color c
,
Foo
::
speed s
);