PageRenderTime 30ms CodeModel.GetById 4ms RepoModel.GetById 0ms app.codeStats 0ms

/trunk/Examples/test-suite/global_ns_arg.i

#
Swig | 15 lines | 10 code | 5 blank | 0 comment | 0 complexity | 83d67ab78274b6c06960b195c15e271b MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. %module global_ns_arg
  2. %inline %{
  3. typedef int Integer;
  4. ::Integer foo(::Integer x) {
  5. return x;
  6. }
  7. ::Integer bar_fn() {
  8. return 1;
  9. }
  10. %}