Add raw templater

This commit is contained in:
Jan
2022-09-05 23:25:11 +02:00
parent 4ef38264c8
commit 1464329245
21 changed files with 996 additions and 7 deletions

View File

@ -0,0 +1,29 @@
#pragma once
#include <string>
#include <utility>
#include <vector>
#include "Utils/Arguments/ArgumentParser.h"
class RawTemplaterArguments
{
ArgumentParser m_argument_parser;
/**
* \brief Prints a command line usage help text for the RawTemplater tool to stdout.
*/
static void PrintUsage();
public:
bool m_verbose;
std::vector<std::string> m_input_files;
std::string m_output_directory;
std::vector<std::pair<std::string, std::string>> m_defines;
RawTemplaterArguments();
bool Parse(int argc, const char** argv);
};