/** * Arguments.cpp * * Implementation of the arguments class * * @author Emiel Bruijntjes * @copyright 2013 Copernica BV */ #include "includes.h" /** * Set up namespace */ namespace PhpCpp { /** * Constructor * @param argc Number of arguments * @param tsrm_ls */ Arguments::Arguments(int argc TSRMLS_DC) { // reserve plenty of space reserve(argc); // loop through the arguments for (int i=0; i