mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 17:00:05 +00:00
33 lines
546 B
C++
33 lines
546 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
namespace scwx
|
|
{
|
|
namespace wsr88d
|
|
{
|
|
|
|
class Level3FileImpl;
|
|
|
|
class Level3File
|
|
{
|
|
public:
|
|
explicit Level3File();
|
|
~Level3File();
|
|
|
|
Level3File(const Level3File&) = delete;
|
|
Level3File& operator=(const Level3File&) = delete;
|
|
|
|
Level3File(Level3File&&) noexcept;
|
|
Level3File& operator=(Level3File&&) noexcept;
|
|
|
|
bool LoadFile(const std::string& filename);
|
|
bool LoadData(std::istream& is);
|
|
|
|
private:
|
|
std::unique_ptr<Level3FileImpl> p;
|
|
};
|
|
|
|
} // namespace wsr88d
|
|
} // namespace scwx
|