/tags/rel-1.3.35/Examples/test-suite/errors/cpp_private_defvalue.i

# · Swig · 7 lines · 6 code · 1 blank · 0 comment · 0 complexity · 1d919f997ef4e6855aa346f185fdd97b MD5 · raw file

  1. %module xxx
  2. class foo {
  3. static const int BAR = 42;
  4. public:
  5. int blah(int x = BAR);
  6. };