summaryrefslogtreecommitdiff
path: root/Examples/test-suite/template_array_numeric.i
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/template_array_numeric.i')
-rw-r--r--Examples/test-suite/template_array_numeric.i26
1 files changed, 26 insertions, 0 deletions
diff --git a/Examples/test-suite/template_array_numeric.i b/Examples/test-suite/template_array_numeric.i
new file mode 100644
index 0000000..463b04a
--- /dev/null
+++ b/Examples/test-suite/template_array_numeric.i
@@ -0,0 +1,26 @@
+%module template_array_numeric
+
+%inline %{
+
+template <int Len>
+class Arrayf
+{
+ float a[Len];
+ public:
+ Arrayf() {}
+ Arrayf(const float l[Len]) { };
+};
+
+template <int Len>
+Arrayf<Len> make_arrayf(const float l[Len])
+{
+ Arrayf<Len> a(l);
+ return a;
+}
+
+typedef Arrayf<4> Array4f;
+
+%}
+
+%template(Array4f) Arrayf<4>;
+%template(make_array4f) make_arrayf<4>;