/tags/rel-1-3-15/SWIG/Examples/test-suite/const_const_2.i
# · Swig · 21 lines · 12 code · 5 blank · 4 comment · 0 complexity · 50f8b9c92dd98ccdcf147291ce90c0b8 MD5 · raw file
- /* This interface file tests whether SWIG handles doubly constant
- methods right. SF Bug #216057 against Swig 1.3a5, reported by
- Mike Romberg <romberg@users.sf.net>
- */
- %module test
- %inline %{
- class Spam {
- public:
- Spam() {}
- };
- class Eggs {
- public:
- Eggs() {}
- const Spam *spam(void) const { return new Spam(); }
- };
- %}