summaryrefslogtreecommitdiff
path: root/hhvm/extensionimpl.h
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2015-06-10 15:35:56 +0200
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2015-06-10 15:35:56 +0200
commit76f8a944540a84b6a5c98135bd9f9e6e996fe37d (patch)
tree4e4a2799ba049b733fef22e377a505f52f35b74f /hhvm/extensionimpl.h
parentc6d019061adc350816b53cbd4c237044e084d1db (diff)
removed hhvm code, it does not work now and wont work for the foreseeable future
Diffstat (limited to 'hhvm/extensionimpl.h')
-rw-r--r--hhvm/extensionimpl.h56
1 files changed, 0 insertions, 56 deletions
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 <emiel.bruijntjes@copernica.com>
- * @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
- */
-}
-