PageRenderTime 44ms CodeModel.GetById 23ms app.highlight 17ms RepoModel.GetById 2ms app.codeStats 0ms

/tags/rel-1.3.35/Lib/octave/std_complex.i

#
Swig | 22 lines | 8 code | 9 blank | 5 comment | 0 complexity | 98ba1ac6ab4b03b7f3c61acb8d26d83e MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
 1/*
 2 *  STD C++ complex typemaps
 3 */
 4
 5%include <octcomplex.swg>
 6
 7%{
 8#include <complex> 
 9%}
10
11/* defining the complex as/from converters */
12
13%swig_cplxdbl_convn(std::complex<double>, std::complex<double>, std::real, std::imag)
14%swig_cplxflt_convn(std::complex<float>,  std::complex<float>,  std::real, std::imag)
15
16/* defining the typemaps */
17
18%typemaps_primitive(%checkcode(CPLXDBL), std::complex<double>);
19%typemaps_primitive(%checkcode(CPLXFLT), std::complex<float>);
20
21
22