stuff-from-scratch/src/core/CommandLineArgs.h

20 lines
289 B
C
Raw Normal View History

2020-05-02 07:31:03 +00:00
#pragma once
#include <memory>
#include <vector>
#include <string>
class CommandLineArgs
{
std::vector<std::string> mArugments;
public:
CommandLineArgs();
void Process(int argc, char *argv[]);
std::size_t GetNumberOfArgs() const;
std::string GetArg(std::size_t index) const;
};