summaryrefslogtreecommitdiff
path: root/src/countable.cpp
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 /src/countable.cpp
parentc8ff51e13fc0a3d8fb7d1423882fa659f9cf2b3b (diff)
removed tabs from makefile, work in progress on implementing SPL interfaces
Diffstat (limited to 'src/countable.cpp')
-rw-r--r--src/countable.cpp32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/countable.cpp b/src/countable.cpp
deleted file mode 100644
index 6182afd..0000000
--- a/src/countable.cpp
+++ /dev/null
@@ -1,32 +0,0 @@
-/**
- * Countable.cpp
- *
- * Implementation of the Countable interface
- *
- * @author Emiel Bruijntjes <emiel.bruijntjes@copernica.com>
- * @copyright 2014 Copernica BV
- */
-#include "includes.h"
-
-#include "spl/spl_iterators.h"
-
-/**
- * Set up namespace
- */
-namespace Php {
-
-/**
- * Implementation of the countable interface
- * @return zend_class_entry*
- * @internal
- */
-struct _zend_class_entry *Countable::implementation()
-{
- return spl_ce_Countable;
-}
-
-/**
- * End namespace
- */
-}
-