summaryrefslogtreecommitdiff
path: root/src/streams.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/streams.cpp')
-rw-r--r--src/streams.cpp40
1 files changed, 0 insertions, 40 deletions
diff --git a/src/streams.cpp b/src/streams.cpp
deleted file mode 100644
index ba6d916..0000000
--- a/src/streams.cpp
+++ /dev/null
@@ -1,40 +0,0 @@
-/**
- * Streams.cpp
- *
- * Implementation of the streams
- *
- * @author Emiel Bruijntjes <emiel.bruijntjes@copernica.com>
- * @copyright 2014 Copernica BV
- */
-#include "includes.h"
-
-/**
- * Set up namespace
- */
-namespace Php {
-
-/**
- * Some static buffers for writing data
- * @var StreamBuf
- */
-static StreamBuf bufOut (0);
-static StreamBuf bufError (E_ERROR);
-static StreamBuf bufWarning (E_WARNING);
-static StreamBuf bufNotice (E_NOTICE);
-static StreamBuf bufDeprecated (E_DEPRECATED);
-
-/**
- * Create the actual steams
- * @var std::ostream
- */
-std::ostream out (&bufOut);
-std::ostream error (&bufError);
-std::ostream warning (&bufWarning);
-std::ostream notice (&bufNotice);
-std::ostream deprecated (&bufDeprecated);
-
-/**
- * End namespace
- */
-}
-