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

# · Swig · 12 lines · 6 code · 2 blank · 4 comment · 0 complexity · 77d551693bf87d4bb39fb46014799dd5 MD5 · raw file

  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. %}