summaryrefslogtreecommitdiff
path: root/trunk/Examples/perl5/multiple_inheritance/example.i
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/Examples/perl5/multiple_inheritance/example.i')
-rw-r--r--trunk/Examples/perl5/multiple_inheritance/example.i9
1 files changed, 9 insertions, 0 deletions
diff --git a/trunk/Examples/perl5/multiple_inheritance/example.i b/trunk/Examples/perl5/multiple_inheritance/example.i
new file mode 100644
index 000000000..fbdf7249f
--- /dev/null
+++ b/trunk/Examples/perl5/multiple_inheritance/example.i
@@ -0,0 +1,9 @@
+/* File : example.i */
+%module example
+
+%{
+#include "example.h"
+%}
+
+/* Let's just grab the original header file here */
+%include "example.h"