mirror of
https://github.com/DarkStore-3DS/Project_CTR.git
synced 2026-07-03 08:49:03 +00:00
25 lines
457 B
C++
25 lines
457 B
C++
#pragma once
|
|
#include "types.h"
|
|
#include <tc/Optional.h>
|
|
#include <tc/io/Path.h>
|
|
#include <tc/io/IStream.h>
|
|
|
|
namespace ctrtool {
|
|
|
|
class LzssProcess
|
|
{
|
|
public:
|
|
LzssProcess();
|
|
|
|
void setInputStream(const std::shared_ptr<tc::io::IStream>& input_stream);
|
|
void setExtractPath(const tc::io::Path& extract_path);
|
|
|
|
void process();
|
|
private:
|
|
std::string mModuleLabel;
|
|
|
|
std::shared_ptr<tc::io::IStream> mInputStream;
|
|
tc::Optional<tc::io::Path> mExtractPath;
|
|
};
|
|
|
|
} |