PageRenderTime 35ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/tags/rel-1-3-26/SWIG/Examples/test-suite/enum_var.i

#
Swig | 8 lines | 5 code | 3 blank | 0 comment | 0 complexity | 60153ce5f61d0bbc7c3307646af122dd MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. %module enum_var
  2. %inline %{
  3. enum Fruit { APPLE, PEAR };
  4. Fruit test;
  5. %}