53 lines
1.4 KiB
C
53 lines
1.4 KiB
C
|
#ifndef AI_STROSTREAMLOGSTREAM_H_INC
|
||
|
#define AI_STROSTREAMLOGSTREAM_H_INC
|
||
|
|
||
|
#include "../include/LogStream.h"
|
||
|
#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 std::string &messgae);
|
||
|
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 std::string &message)
|
||
|
{
|
||
|
ostream << message.c_str();
|
||
|
ostream.flush();
|
||
|
}
|
||
|
|
||
|
// ---------------------------------------------------------------------------
|
||
|
} // Namespace Assimp
|
||
|
|
||
|
#endif // guard
|