a better way to deal with constants and enums and some change about the doc

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2009-sploving@11515 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Baozeng Ding 2009-08-08 13:25:29 +00:00
commit b1a384dc3c
10 changed files with 223 additions and 255 deletions

View file

@ -5,12 +5,12 @@
void enum_test(color c) {
if (c == RED) {
sciprint("color = RED, ");
printf("color = RED\n");
} else if (c == BLUE) {
sciprint("color = BLUE, ");
printf("color = BLUE\n ");
} else if (c == GREEN) {
sciprint("color = GREEN, ");
printf("color = GREEN\n");
} else {
sciprint("color = Unknown color!, ");
printf("color = Unknown color!\n");
}
}