summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/assimp/code/StdOStreamLogStream.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/assimp/code/StdOStreamLogStream.h')
-rw-r--r--src/3rdparty/assimp/code/StdOStreamLogStream.h52
1 files changed, 0 insertions, 52 deletions
diff --git a/src/3rdparty/assimp/code/StdOStreamLogStream.h b/src/3rdparty/assimp/code/StdOStreamLogStream.h
deleted file mode 100644
index 37b6331f6..000000000
--- a/src/3rdparty/assimp/code/StdOStreamLogStream.h
+++ /dev/null
@@ -1,52 +0,0 @@
-#ifndef AI_STROSTREAMLOGSTREAM_H_INC
-#define AI_STROSTREAMLOGSTREAM_H_INC
-
-#include "../include/assimp/LogStream.hpp"
-#include <ostream>
-
-namespace Assimp {
-
-// ---------------------------------------------------------------------------
-/** @class StdOStreamLogStream
- * @brief Logs into a std::ostream
- */
-class StdOStreamLogStream : public LogStream
-{
-public:
- /** @brief Construction from an existing std::ostream
- * @param _ostream Output stream to be used
- */
- StdOStreamLogStream(std::ostream& _ostream);
-
- /** @brief Destructor */
- ~StdOStreamLogStream();
-
- /** @brief Writer */
- void write(const char* message);
-private:
- std::ostream& ostream;
-};
-
-// ---------------------------------------------------------------------------
-// Default constructor
-inline StdOStreamLogStream::StdOStreamLogStream(std::ostream& _ostream)
- : ostream (_ostream)
-{}
-
-// ---------------------------------------------------------------------------
-// Default constructor
-inline StdOStreamLogStream::~StdOStreamLogStream()
-{}
-
-// ---------------------------------------------------------------------------
-// Write method
-inline void StdOStreamLogStream::write(const char* message)
-{
- ostream << message;
- ostream.flush();
-}
-
-// ---------------------------------------------------------------------------
-} // Namespace Assimp
-
-#endif // guard