summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/assimp/code/Win32DebugLogStream.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/assimp/code/Win32DebugLogStream.h')
-rw-r--r--src/3rdparty/assimp/code/Win32DebugLogStream.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/src/3rdparty/assimp/code/Win32DebugLogStream.h b/src/3rdparty/assimp/code/Win32DebugLogStream.h
deleted file mode 100644
index 5bcb03406..000000000
--- a/src/3rdparty/assimp/code/Win32DebugLogStream.h
+++ /dev/null
@@ -1,50 +0,0 @@
-#ifndef AI_WIN32DEBUGLOGSTREAM_H_INC
-#define AI_WIN32DEBUGLOGSTREAM_H_INC
-
-#ifdef WIN32
-
-#include "../include/assimp/LogStream.hpp"
-#include "windows.h"
-
-namespace Assimp {
-
-// ---------------------------------------------------------------------------
-/** @class Win32DebugLogStream
- * @brief Logs into the debug stream from win32.
- */
-class Win32DebugLogStream :
- public LogStream
-{
-public:
- /** @brief Default constructor */
- Win32DebugLogStream();
-
- /** @brief Destructor */
- ~Win32DebugLogStream();
-
- /** @brief Writer */
- void write(const char* messgae);
-};
-
-// ---------------------------------------------------------------------------
-// Default constructor
-inline Win32DebugLogStream::Win32DebugLogStream()
-{}
-
-// ---------------------------------------------------------------------------
-// Default constructor
-inline Win32DebugLogStream::~Win32DebugLogStream()
-{}
-
-// ---------------------------------------------------------------------------
-// Write method
-inline void Win32DebugLogStream::write(const char* message)
-{
- OutputDebugStringA( message);
-}
-
-// ---------------------------------------------------------------------------
-} // Namespace Assimp
-
-#endif // ! WIN32
-#endif // guard