mirror of https://github.com/libAthena/athena.git
26 lines
427 B
C++
26 lines
427 B
C++
|
#ifndef __SSFILEWRITER_HPP__
|
||
|
#define __SSFILEWRITER_HPP__
|
||
|
|
||
|
#include "BinaryWriter.hpp"
|
||
|
|
||
|
namespace zelda
|
||
|
{
|
||
|
class SSFile;
|
||
|
|
||
|
namespace io
|
||
|
{
|
||
|
|
||
|
class SSFileWriter : public BinaryWriter
|
||
|
{
|
||
|
// Why does this fuck up my formatting in Qt Creator?
|
||
|
BINARYWRITER_BASE
|
||
|
public:
|
||
|
SSFileWriter(Uint8* data, Uint64 len);
|
||
|
SSFileWriter(const std::string& filename);
|
||
|
|
||
|
void write(SSFile* file);
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
#endif // __SSFILEWRITER_HPP__
|