Sign in
fuchsia
/
third_party
/
swig
/
b0be9d903953b4489168a679bf933c33c05c1724
/
.
/
Examples
/
ruby
/
enum
/
example.h
blob: 525d62afc5726c3b2049c2c427ec964fabaaf626 [
file
] [
log
] [
blame
]
/* File : example.h */
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
);