mirror of
https://github.com/libAthena/athena.git
synced 2025-12-09 13:38:03 +00:00
Initial API implementation
This commit is contained in:
@@ -25,14 +25,14 @@ namespace io
|
||||
class FileWriter : public IStreamWriter
|
||||
{
|
||||
public:
|
||||
FileWriter(const std::string& filename);
|
||||
FileWriter(const std::string& filename, bool overwrite = true);
|
||||
virtual ~FileWriter();
|
||||
|
||||
void setEndian(Endian endian);
|
||||
Endian endian() const;
|
||||
bool isBigEndian() const;
|
||||
bool isLittleEndian() const;
|
||||
void open();
|
||||
void open(bool overwrite = true);
|
||||
void close();
|
||||
bool isOpen() const;
|
||||
bool save();
|
||||
|
||||
Reference in New Issue
Block a user