PageRenderTime 34ms CodeModel.GetById 13ms RepoModel.GetById 0ms app.codeStats 0ms

/tags/rel-1.3.35/Examples/test-suite/imports_a.i

#
Swig | 15 lines | 7 code | 4 blank | 4 comment | 0 complexity | ee88a4dca3a1c3094547d99f66990221 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. /* This file is part of a test for SF bug #231619.
  2. It shows that the %import directive does not work properly in SWIG
  3. 1.3a5: Type information is not properly generated if a base class
  4. comes from an %import-ed file. */
  5. %module imports_a
  6. %warnfilter(SWIGWARN_RUBY_WRONG_NAME) A::MemberEnum; /* Ruby, wrong constant name */
  7. %warnfilter(SWIGWARN_RUBY_WRONG_NAME) GlobalEnum; /* Ruby, wrong constant name */
  8. %{
  9. #include "imports_a.h"
  10. %}
  11. %include "imports_a.h"