You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
enum EnumType0
|
|
{
|
|
e0,
|
|
e1,
|
|
e2,
|
|
e3_inserted,
|
|
enum_count
|
|
};
|
|
|
|
enum EnumType1
|
|
{
|
|
ee0,
|
|
ee1,
|
|
ee2,
|
|
ee3_inserted,
|
|
eenum_count
|
|
};
|
|
|
|
void
|
|
foo(EnumType0)
|
|
{}
|
|
|
|
void
|
|
bar(EnumType1)
|
|
{}
|