/tags/rel-1-3-25/SWIG/Examples/test-suite/imports_a.i
# · Swig · 15 lines · 7 code · 4 blank · 4 comment · 0 complexity · 4c8c178e39c3258cedea201fb1eaa208 MD5 · raw file
- /* This file is part of a test for SF bug #231619.
- It shows that the %import directive does not work properly in SWIG
- 1.3a5: Type information is not properly generated if a base class
- comes from an %import-ed file. */
- %module imports_a
- %warnfilter(801) A::MemberEnum; /* Ruby, wrong constant name */
- %warnfilter(801) GlobalEnum; /* Ruby, wrong constant name */
- %{
- #include "imports_a.h"
- %}
- %include "imports_a.h"