This repository has been archived on 2020-06-07. You can view files and clone it, but cannot push or open issues or pull requests.
php-armadillo/src/complex.hh

24 lines
361 B
C++

//
// php-armadillo/complex.hh
//
// @Author CismonX
//
#ifndef PHP_ARMA_COMPLEX_HH
#define PHP_ARMA_COMPLEX_HH
#include <php.h>
namespace php_arma
{
template <typename T>
PHP_METHOD(Complex, __construct);
void complex_init();
extern zend_class_entry *complex_ce;
extern zend_class_entry *cx_double_ce;
}
#endif //!PHP_ARMA_COMPLEX_HH