2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2026-03-17 02:13:02 +00:00
Files
OpenAssetTools/src/RawTemplater/RawTemplaterArguments.h
2026-03-05 21:08:39 +00:00

33 lines
754 B
C++

#pragma once
#include "Utils/Arguments/ArgumentParser.h"
#include <string>
#include <utility>
#include <vector>
class RawTemplaterArguments
{
ArgumentParser m_argument_parser;
/**
* \brief Prints a command line usage help text for the RawTemplater tool to stdout.
*/
void PrintUsage() const;
static void PrintVersion();
public:
std::vector<std::string> m_input_files;
std::string m_output_directory;
// Generate a build log that is always written for the compiler to determine
// the last output time.
std::string m_build_log_file;
std::vector<std::pair<std::string, std::string>> m_defines;
RawTemplaterArguments();
bool ParseArgs(int argc, const char** argv, bool& shouldContinue);
};