PageRenderTime 42ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/trunk/Examples/octave/enum/example.cxx

#
C++ | 37 lines | 33 code | 3 blank | 1 comment | 27 complexity | 0746cfe8910472936934140291f7d57e MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. /* File : example.c */
  2. #include "example.h"
  3. #include <stdio.h>
  4. void Foo::enum_test(speed s) {
  5. if (s == IMPULSE) {
  6. printf("IMPULSE speed\n");
  7. } else if (s == WARP) {
  8. printf("WARP speed\n");
  9. } else if (s == LUDICROUS) {
  10. printf("LUDICROUS speed\n");
  11. } else {
  12. printf("Unknown speed\n");
  13. }
  14. }
  15. void enum_test(color c, Foo::speed s) {
  16. if (c == RED) {
  17. printf("color = RED, ");
  18. } else if (c == BLUE) {
  19. printf("color = BLUE, ");
  20. } else if (c == GREEN) {
  21. printf("color = GREEN, ");
  22. } else {
  23. printf("color = Unknown color!, ");
  24. }
  25. if (s == Foo::IMPULSE) {
  26. printf("speed = IMPULSE speed\n");
  27. } else if (s == Foo::WARP) {
  28. printf("speed = WARP speed\n");
  29. } else if (s == Foo::LUDICROUS) {
  30. printf("speed = LUDICROUS speed\n");
  31. } else {
  32. printf("speed = Unknown speed!\n");
  33. }
  34. }