* Fix commit

* Fix LZO implementation (use lzo1x_decompress_safe)
This commit is contained in:
2015-03-01 13:22:59 -08:00
parent c28cfbaba6
commit 190f1e8c17
5 changed files with 53 additions and 53 deletions

View File

@@ -16,7 +16,7 @@
#ifndef MEMORYWRITER_HPP
#define MEMORYWRITER_HPP
#include "Athena/IStream.hpp"
#include "Athena/IStreamWriter.hpp"
#include <string>
#include <functional>
@@ -33,7 +33,7 @@ namespace io
* this allows for fast, flexible code as well as the ability to quickly modify data
* \sa Stream
*/
class MemoryWriter : public IStream
class MemoryWriter : public IStreamWriter
{
public:
/*! \brief This constructor takes an existing buffer to write to.