/** * Parameters.cpp * * @author Emiel Bruijntjes * @copyright 2013 Copernica BV */ #include "includes.h" /** * Set up namespace */ namespace Php { /** * Parameters * @param this_ptr Pointer to the object * @param argc Number of arguments * @param tsrm_ls */ Parameters::Parameters(zval *this_ptr, int argc TSRMLS_DC) { // reserve plenty of space reserve(argc); // loop through the arguments for (int i=0; icpp; } /** * End of namespace */ }