mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-10 23:08:05 -05:00
33 lines
665 B
C++
33 lines
665 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:
|
|
bool m_verbose;
|
|
|
|
std::vector<std::string> m_input_files;
|
|
std::string m_output_directory;
|
|
|
|
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);
|
|
};
|