mirror of
https://github.com/DarkStore-3DS/Project_CTR.git
synced 2026-07-04 00:39:03 +00:00
Add source code for ctrtool
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
#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;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user