summaryrefslogtreecommitdiff
path: root/include/countable.h
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-07 10:52:55 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-07 10:52:55 +0100
commitd8af7675389df1bf4796e03e9286fdadba882d38 (patch)
tree00dbe04101fed59af5e9bd59f82dd7b94fc1b0b7 /include/countable.h
parentc8ff51e13fc0a3d8fb7d1423882fa659f9cf2b3b (diff)
removed tabs from makefile, work in progress on implementing SPL interfaces
Diffstat (limited to 'include/countable.h')
-rw-r--r--include/countable.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/include/countable.h b/include/countable.h
index 12d87d5..1b99463 100644
--- a/include/countable.h
+++ b/include/countable.h
@@ -25,17 +25,11 @@ class Countable
{
public:
/**
- * Implementation of the countable interface
- * @return zend_class_entry*
- * @internal
- */
- static struct _zend_class_entry *implementation();
-
- /**
* Retrieve the number of items in the class
* @return Value
*/
virtual Value count() = 0;
+
};
/**