cpplab/src/core/bmath/complex.cpp

6 lines
No EOL
135 B
C++

#include "complex.hpp"
Core::Bmath::Complex::Complex(Long real,Long imaginary){
this->real=real;
this->imaginary=imaginary;
};