mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-26 06:37:52 -05:00
Add raw templater
This commit is contained in:
19
src/RawTemplater/Templating/Templater.h
Normal file
19
src/RawTemplater/Templating/Templater.h
Normal file
@ -0,0 +1,19 @@
|
||||
#pragma once
|
||||
#include <string>
|
||||
|
||||
#include "Parsing/IParserLineStream.h"
|
||||
|
||||
namespace templating
|
||||
{
|
||||
class Templater
|
||||
{
|
||||
public:
|
||||
Templater(std::istream& stream, std::string fileName);
|
||||
|
||||
bool TemplateToDirectory(const std::string& outputDirectory);
|
||||
|
||||
private:
|
||||
std::istream& m_stream;
|
||||
std::string m_file_name;
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user