Sign in
fuchsia
/
third_party
/
swig
/
ae709933805236a8bbf2cba82ed984d92c82ee9c
/
.
/
Examples
/
csharp
/
enum
/
example.h
blob: 9119cd9fc75203499fd5933fdcfc094dfc8f3b52 [
file
] [
log
] [
blame
]
/* File : example.h */
enum
color
{
RED
,
BLUE
,
GREEN
};
class
Foo
{
public
:
Foo
()
{
}
enum
speed
{
IMPULSE
=
10
,
WARP
=
20
,
LUDICROUS
=
30
};
void
enum_test
(
speed s
);
};
void
enum_test
(
color c
,
Foo
::
speed s
);