git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@5776 626c5289-ae23-0410-ae9c-e8d60b6d4f22
32 lines
663 B
C++
32 lines
663 B
C++
/* File : example.cxx */
|
|
|
|
#include "example.h"
|
|
#include <stdio.h>
|
|
|
|
void Foo::enum_test(speed s) {
|
|
if (s == IMPULSE) {
|
|
printf("IMPULSE speed\n");
|
|
} else if (s == WARP) {
|
|
printf("WARP speed\n");
|
|
} else if (s == LUDICROUS) {
|
|
printf("LUDICROUS speed\n");
|
|
} else if (s == HYPER) {
|
|
printf("HYPER speed\n");
|
|
} else {
|
|
printf("Unknown speed\n");
|
|
}
|
|
}
|
|
|
|
void enum_test(color c, Foo::speed s) {
|
|
if (c == RED) {
|
|
printf("color = RED, ");
|
|
} else if (c == BLUE) {
|
|
printf("color = BLUE, ");
|
|
} else if (c == GREEN) {
|
|
printf("color = GREEN, ");
|
|
} else {
|
|
printf("color = Unknown color!, ");
|
|
}
|
|
Foo obj;
|
|
obj.enum_test(s);
|
|
}
|