summaryrefslogtreecommitdiff
path: root/Examples/test-suite/namespace_spaces.i
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/namespace_spaces.i')
-rw-r--r--Examples/test-suite/namespace_spaces.i26
1 files changed, 26 insertions, 0 deletions
diff --git a/Examples/test-suite/namespace_spaces.i b/Examples/test-suite/namespace_spaces.i
new file mode 100644
index 0000000..9819161
--- /dev/null
+++ b/Examples/test-suite/namespace_spaces.i
@@ -0,0 +1,26 @@
+%module namespace_spaces
+%inline %{
+
+class Foo {
+public:
+ Foo();
+ ~Foo();
+ typedef int Integer;
+ int blah(int x);
+ int spam(int x);
+ Integer bar(Integer x);
+ void (Foo:: *func_ptr) (int);
+};
+
+inline Foo :: Foo () {}
+
+inline Foo :: ~Foo () {}
+
+inline int Foo
+::blah(int x) { return 2*x; }
+
+inline int Foo :: spam(int x) { return -x; }
+
+inline Foo :: Integer Foo :: bar(Foo :: Integer x) { return x; }
+
+%}