mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-18 10:47:57 -05:00
Add raw templater
This commit is contained in:
29
src/RawTemplater/RawTemplaterArguments.h
Normal file
29
src/RawTemplater/RawTemplaterArguments.h
Normal 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);
|
||||
};
|
Reference in New Issue
Block a user