/trunk/Lib/ruby/std_complex.i

# · Swig · 22 lines · 8 code · 9 blank · 5 comment · 0 complexity · 0f15cab175ef0f3ea920d5c6d5927131 MD5 · raw file

  1. /*
  2. * STD C++ complex typemaps
  3. */
  4. %include <rubycomplex.swg>
  5. %{
  6. #include <complex>
  7. %}
  8. /* defining the complex as/from converters */
  9. %swig_cplxdbl_convn(std::complex<double>, std::complex<double>, std::real, std::imag)
  10. %swig_cplxflt_convn(std::complex<float>, std::complex<float>, std::real, std::imag)
  11. /* defining the typemaps */
  12. %typemaps_primitive(%checkcode(CPLXDBL), std::complex<double>);
  13. %typemaps_primitive(%checkcode(CPLXFLT), std::complex<float>);