summaryrefslogtreecommitdiff
path: root/src/base.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/base.cpp')
-rw-r--r--src/base.cpp29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/base.cpp b/src/base.cpp
deleted file mode 100644
index 867fd9c..0000000
--- a/src/base.cpp
+++ /dev/null
@@ -1,29 +0,0 @@
-/**
- * Base.cpp
- *
- * Implementation of the base class
- *
- * @documentation private
- */
-#include "includes.h"
-
-/**
- * Set up namespace
- */
-namespace Php {
-
-/**
- * Convert the object to a Php::Value object (how it is used externally)
- * @return Value
- */
-Value Base::value() const
-{
- // wrap the properties table, as a reference
- return Object(*_object->properties_table, true);
-}
-
-/**
- * End of namespace
- */
-}
-