PageRenderTime 44ms CodeModel.GetById 32ms app.highlight 9ms RepoModel.GetById 1ms app.codeStats 0ms

/tags/ttn-post-libtool-1-4-3-upgrade/SWIG/Examples/ruby/import_template/foo.i

#
Swig | 10 lines | 7 code | 3 blank | 0 comment | 0 complexity | 749ff4ece0ef2fe567f6013bc7fc0c13 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
 1%module foo
 2%{
 3#include "foo.h"
 4%}
 5
 6%import base.i
 7%include "foo.h"
 8
 9%template(IntFoo) Foo<int>;
10