/trunk/Examples/ruby/template/example.i

# · Swig · 21 lines · 12 code · 6 blank · 3 comment · 0 complexity · 0904d80106278bebd640308053907f4b MD5 · raw file

  1. /* File : example.i */
  2. %module example
  3. %{
  4. #ifdef max
  5. #undef max
  6. #endif
  7. #include "example.h"
  8. %}
  9. /* Let's just grab the original header file here */
  10. %include "example.h"
  11. /* Now instantiate some specific template declarations */
  12. %template(maxint) max<int>;
  13. %template(maxdouble) max<double>;
  14. %template(Vecint) vector<int>;
  15. %template(Vecdouble) vector<double>;