1 #ifndef DS_VECTOR_CE_H 2 #define DS_VECTOR_CE_H 3 4 #include "php.h" 5 #include "../../common.h" 6 #include "../arginfo.h" 7 8 extern zend_class_entry *php_ds_vector_ce; 9 10 ARGINFO_OPTIONAL_ZVAL(Vector___construct, values); 11 ARGINFO_NONE_RETURN_OBJ(Vector_getIterator, Traversable); 12 13 void php_ds_register_vector(); 14 15 #endif 16