From 76f8a944540a84b6a5c98135bd9f9e6e996fe37d Mon Sep 17 00:00:00 2001 From: Emiel Bruijntjes Date: Wed, 10 Jun 2015 15:35:56 +0200 Subject: removed hhvm code, it does not work now and wont work for the foreseeable future --- hhvm/extensionimpl.h | 56 ---------------------------------------------------- 1 file changed, 56 deletions(-) delete mode 100644 hhvm/extensionimpl.h (limited to 'hhvm/extensionimpl.h') diff --git a/hhvm/extensionimpl.h b/hhvm/extensionimpl.h deleted file mode 100644 index 3444f8b..0000000 --- a/hhvm/extensionimpl.h +++ /dev/null @@ -1,56 +0,0 @@ -/** - * ExtensionImpl.h - * - * Implementation of the extension object for the HHVM engine - * - * @author Emiel Bruijntjes - * @copyright 2014 Copernica BV - */ - -/** - * Namespace - */ -namespace Php { - -/** - * Class definition - */ -class ExtensionImpl : public ExtensionBase -{ -private: - /** - * Pointer to the extension object that is filled by the extension programmer - * @var Extension - */ - Extension *_data; - -public: - /** - * Constructor - * @param data Pointer to the extension object created by the extension programmer - * @param name Name of the extension - * @param version Version identifier of the extension - * @param apiversion API version number - */ - ExtensionImpl(Extension *data, const char *name, const char *version, int apiversion) : ExtensionBase(data) {} - - /** - * Destructor - */ - virtual ~ExtensionImpl() {} - - /** - * Pointer to the module that is loaded by HHVM - * @return void* - */ - void *module() - { - return nullptr; - } -}; - -/** - * End of namespace - */ -} - -- cgit v1.2.3