Conflicts: .project COPYRIGHT Doc/Manual/style.css Examples/Makefile.in Examples/test-suite/common.mk Lib/typemaps/strings.swg Makefile.in Source/DOH/fio.c Source/Makefile.am Source/Modules/emit.cxx Source/Modules/javascript.cxx configure.in git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/oliverb-javascript-v8@13764 626c5289-ae23-0410-ae9c-e8d60b6d4f22
37 lines
839 B
C++
Executable file
37 lines
839 B
C++
Executable file
/* File : example.c */
|
|
|
|
#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 {
|
|
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!, ");
|
|
}
|
|
if (s == Foo::IMPULSE) {
|
|
printf("speed = IMPULSE speed\n");
|
|
} else if (s == Foo::WARP) {
|
|
printf("speed = WARP speed\n");
|
|
} else if (s == Foo::LUDICROUS) {
|
|
printf("speed = LUDICROUS speed\n");
|
|
} else {
|
|
printf("speed = Unknown speed!\n");
|
|
}
|
|
}
|