From 35fd3ccbeb4def71b4d8a59dfbb5c31201b099b9 Mon Sep 17 00:00:00 2001 From: Emiel Bruijntjes Date: Sun, 6 Apr 2014 21:53:24 +0200 Subject: renamed src directory to zend directory, disabled TSRM debug code --- src/parametersimpl.h | 53 ---------------------------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 src/parametersimpl.h (limited to 'src/parametersimpl.h') diff --git a/src/parametersimpl.h b/src/parametersimpl.h deleted file mode 100644 index fd14238..0000000 --- a/src/parametersimpl.h +++ /dev/null @@ -1,53 +0,0 @@ -/** - * ParametersImpl.h - * - * Extended parameters class that can be instantiated - * - * @author Emiel Bruijntjes - * @copyright 2013 Copernica BV - */ - -/** - * Set up namespace - */ -namespace Php { - -/** - * Class definition - */ -class ParametersImpl : public Parameters -{ -public: - /** - * Constructor - * @param this_ptr Pointer to the object - * @param argc Number of arguments - * @param tsrm_ls - */ - ParametersImpl(zval *this_ptr, int argc TSRMLS_DC) : Parameters(this_ptr ? ObjectImpl::find(this_ptr TSRMLS_CC)->object() : nullptr) - { - // reserve plenty of space - reserve(argc); - - // loop through the arguments - for (int i=0; i