PageRenderTime 231ms CodeModel.GetById 12ms RepoModel.GetById 0ms app.codeStats 0ms

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

#
Swig | 12 lines | 6 code | 2 blank | 4 comment | 0 complexity | 77d551693bf87d4bb39fb46014799dd5 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. /* This interface file checks whether the SWIG parser handles static
  2. array members of classes. Bug reported by Annalisa Terracina
  3. <annalisa.terracina@datamat.it> on 2001-07-03.
  4. */
  5. %module static_array_member
  6. %inline %{
  7. class RB {
  8. static char *rberror[];
  9. };
  10. %}