mirror of
https://onedev.site.tesses.net/tesses-framework
synced 2026-02-08 07:45:46 +00:00
13 lines
392 B
C++
13 lines
392 B
C++
#pragma once
|
|
#include "Common.hpp"
|
|
namespace Tesses::Framework {
|
|
class Args {
|
|
public:
|
|
Args(std::vector<std::string> args);
|
|
Args(int argc, char** argv);
|
|
std::string filename;
|
|
std::vector<std::string> positional;
|
|
std::vector<std::string> flags;
|
|
std::vector<std::pair<std::string,std::string>> options;
|
|
};
|
|
} |