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.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/src/3rdparty/assimp/code/Win32DebugLogStream.h b/src/3rdparty/assimp/code/Win32DebugLogStream.h
index 5bcb03406..c7bd8ca62 100644
--- a/src/3rdparty/assimp/code/Win32DebugLogStream.h
+++ b/src/3rdparty/assimp/code/Win32DebugLogStream.h
@@ -3,48 +3,48 @@
#ifdef WIN32
-#include "../include/assimp/LogStream.hpp"
+#include <assimp/LogStream.hpp>
#include "windows.h"
-namespace Assimp {
+namespace Assimp {
// ---------------------------------------------------------------------------
-/** @class Win32DebugLogStream
- * @brief Logs into the debug stream from win32.
+/** @class Win32DebugLogStream
+ * @brief Logs into the debug stream from win32.
*/
class Win32DebugLogStream :
- public LogStream
+ public LogStream
{
public:
- /** @brief Default constructor */
- Win32DebugLogStream();
-
- /** @brief Destructor */
- ~Win32DebugLogStream();
-
- /** @brief Writer */
- void write(const char* messgae);
+ /** @brief Default constructor */
+ Win32DebugLogStream();
+
+ /** @brief Destructor */
+ ~Win32DebugLogStream();
+
+ /** @brief Writer */
+ void write(const char* messgae);
};
// ---------------------------------------------------------------------------
-// Default constructor
+// Default constructor
inline Win32DebugLogStream::Win32DebugLogStream()
{}
// ---------------------------------------------------------------------------
-// Default constructor
+// Default constructor
inline Win32DebugLogStream::~Win32DebugLogStream()
{}
// ---------------------------------------------------------------------------
-// Write method
+// Write method
inline void Win32DebugLogStream::write(const char* message)
{
- OutputDebugStringA( message);
+ OutputDebugStringA( message);
}
// ---------------------------------------------------------------------------
-} // Namespace Assimp
+} // Namespace Assimp
#endif // ! WIN32
#endif // guard