PageRenderTime 23ms CodeModel.GetById 18ms app.highlight 4ms RepoModel.GetById 0ms app.codeStats 0ms

/tags/rel-1-3-15/SWIG/Examples/test-suite/default_ref.i

#
Swig | 12 lines | 8 code | 4 blank | 0 comment | 0 complexity | ef46faf47168ed039884d3e31e925df1 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
 1%module default_ref
 2
 3%inline %{
 4#include <string>
 5
 6void test1(const int &x = 42) {
 7}
 8
 9void test2(const std::string &x = "hello") {
10}
11%}
12