2015-03-01 20:42:39 +00:00
|
|
|
#ifndef SSFILEWRITER_HPP
|
|
|
|
#define SSFILEWRITER_HPP
|
2014-04-20 09:14:15 +00:00
|
|
|
|
2015-03-01 20:42:39 +00:00
|
|
|
#include "Athena/MemoryWriter.hpp"
|
2014-04-20 09:14:15 +00:00
|
|
|
|
|
|
|
namespace Athena
|
|
|
|
{
|
|
|
|
class SkywardSwordFile;
|
|
|
|
|
|
|
|
namespace io
|
|
|
|
{
|
|
|
|
|
2015-07-08 06:03:08 +00:00
|
|
|
class SkywardSwordFileWriter : public MemoryCopyWriter
|
2014-04-20 09:14:15 +00:00
|
|
|
{
|
2015-07-08 06:03:08 +00:00
|
|
|
MEMORYCOPYWRITER_BASE();
|
2014-04-20 09:14:15 +00:00
|
|
|
public:
|
2014-06-18 04:51:18 +00:00
|
|
|
SkywardSwordFileWriter(atUint8* data, atUint64 len);
|
2014-04-20 09:14:15 +00:00
|
|
|
SkywardSwordFileWriter(const std::string& filename);
|
|
|
|
|
|
|
|
void write(SkywardSwordFile* file);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
2015-03-01 20:42:39 +00:00
|
|
|
#endif // SSFILEWRITER_HPP
|