import source from 1.3.40
[external/swig.git] / Examples / php / enum / example.h
1 /* File : example.h */
2
3 enum color { RED, BLUE, GREEN };
4
5 class Foo {
6  public:
7   Foo() { }
8   enum speed { IMPULSE, WARP, LUDICROUS };
9   void enum_test(speed s);
10 };
11
12 void enum_test(color c, Foo::speed s);
13