summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/assimp/include/assimp/LogStream.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/assimp/include/assimp/LogStream.hpp')
-rw-r--r--src/3rdparty/assimp/include/assimp/LogStream.hpp24
1 files changed, 19 insertions, 5 deletions
diff --git a/src/3rdparty/assimp/include/assimp/LogStream.hpp b/src/3rdparty/assimp/include/assimp/LogStream.hpp
index 477fe5321..1052f1fda 100644
--- a/src/3rdparty/assimp/include/assimp/LogStream.hpp
+++ b/src/3rdparty/assimp/include/assimp/LogStream.hpp
@@ -2,7 +2,8 @@
Open Asset Import Library (assimp)
----------------------------------------------------------------------
-Copyright (c) 2006-2016, assimp team
+Copyright (c) 2006-2017, assimp team
+
All rights reserved.
Redistribution and use of this software in source and binary forms,
@@ -43,8 +44,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef INCLUDED_AI_LOGSTREAM_H
#define INCLUDED_AI_LOGSTREAM_H
+
#include "types.h"
+
namespace Assimp {
+
class IOSystem;
// ------------------------------------------------------------------------------------
@@ -60,12 +64,11 @@ class ASSIMP_API LogStream
{
protected:
/** @brief Default constructor */
- LogStream() {
- }
+ LogStream();
+
public:
/** @brief Virtual destructor */
- virtual ~LogStream() {
- }
+ virtual ~LogStream();
// -------------------------------------------------------------------
/** @brief Overwrite this for your own output methods
@@ -90,6 +93,17 @@ public:
IOSystem* io = NULL);
}; // !class LogStream
+
+inline
+LogStream::LogStream() {
+ // empty
+}
+
+inline
+LogStream::~LogStream() {
+ // empty
+}
+
// ------------------------------------------------------------------------------------
} // Namespace Assimp