mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-25 22:27:53 -05:00
23 lines
495 B
C++
23 lines
495 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
#include "Utils/ClassUtils.h"
|
|
#include "Parsing/IParserLineStream.h"
|
|
|
|
namespace templating
|
|
{
|
|
class Templater
|
|
{
|
|
public:
|
|
Templater(std::istream& stream, std::string fileName);
|
|
|
|
void SetBuildLogFile(std::ostream* buildLogFile);
|
|
_NODISCARD bool TemplateToDirectory(const std::string& outputDirectory) const;
|
|
|
|
private:
|
|
std::istream& m_stream;
|
|
std::ostream* m_build_log;
|
|
std::string m_file_name;
|
|
};
|
|
}
|