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/vector.hh

33 lines
526 B
C++

//
// php-armadillo/vector.hh
//
// @Author CismonX
//
#ifndef PHP_ARMA_VECTOR_HH
#define PHP_ARMA_VECTOR_HH
#include "common/php_arma.hh"
namespace php_arma
{
template <typename T, typename ChildT>
struct vector
{
using native_t = typename ChildT::native_t;
PHP_ARMA_COMMON_DECLARE();
private:
static PHP_FUNCTION(t);
};
void vector_init();
constexpr const char vector_php_name[] = "Vector";
inline zend_class_entry *vector_ce;
}
#endif // !PHP_ARMA_VECTOR_HH