summaryrefslogtreecommitdiff
path: root/src/base.cpp
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-02 15:49:55 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-02 15:49:55 +0100
commit51f4788b2b51a21894ae49821abc67c2fab4a68a (patch)
treef7942b5dd9d33f511fb8d09df23519c51fb2e515 /src/base.cpp
parent41bd759f31d625b5f73dd3a31d76a91efbde8ad7 (diff)
fixed settings Base::_self variable to a valid, editable value object
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
- */
-}
-