summaryrefslogtreecommitdiff
path: root/src/mixedobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mixedobject.h')
-rw-r--r--src/mixedobject.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/mixedobject.h b/src/mixedobject.h
deleted file mode 100644
index 4db74da..0000000
--- a/src/mixedobject.h
+++ /dev/null
@@ -1,39 +0,0 @@
-/**
- * MixedObject.h
- *
- * Structure that combines a Zend object with an object in C++
- *
- * @author Emiel Bruijntjes <emiel.bruijntjes@copernica.com>
- * @copyright 2013 Copernica BV
- */
-
-/**
- * Set up namespace
- */
-namespace Php {
-
-/**
- * Structure that combines a C++ object with a zend object
- */
-struct MixedObject
-{
- /**
- * The actual object is the first member, so that casting
- * the MixedObject to a zend_object will also result in a valid pointer
- * @var zend_object
- */
- zend_object php;
-
- /**
- * Pointer to the C++ implementation
- * @var Base
- */
- Base *cpp;
-};
-
-/**
- * End of namespace
- */
-}
-
-