summaryrefslogtreecommitdiff
path: root/include/object.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/object.h')
-rw-r--r--include/object.h16
1 files changed, 15 insertions, 1 deletions
diff --git a/include/object.h b/include/object.h
index 0cdeb5c..301fa57 100644
--- a/include/object.h
+++ b/include/object.h
@@ -54,9 +54,23 @@ public:
* }
*
* @param name Name of the class to instantiate
- * @param base Implementation of the class
+ * @param base C++ object to wrap
*/
Object(const char *name, Base *base);
+
+ /**
+ * If you already have the zend_class_entry, you can also pass the
+ * class_entry structure instead of the class name. This constructor
+ * works exactly like the Object(name, base) constructor mentioned
+ * above.
+ *
+ * Note that if you normally use PHP-CPP, you do not have the class_entry,
+ * so you probably need to pass the name anyway
+ *
+ * @param entry The PHP class entry
+ * @param base C++ object to wrap
+ */
+ Object(struct _zend_class_entry *entry, Base *base);
/**
* Wrap around an object implemented by us