import source from 1.3.40
[external/swig.git] / Examples / test-suite / prefix.i
1 // Test that was failing for PHP - the value of the -prefix option was
2 // ignored
3 %module prefix
4
5 %inline %{
6
7 class Foo {
8 public:
9   Foo *get_self() {
10     return this;
11   }
12 };
13
14 %}