First sketch of the ArgumentParser class

This commit is contained in:
Pranav Srinivas Kumar 2019-03-30 10:04:35 -04:00
parent 11e2b43086
commit 424b22aa6a
2 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,14 @@
#include <string>
namespace argparse {
class ArgumentParser {
public:
ArgumentParser(const std::string& program_name) :
program_name_(program_name) {}
private:
std::string program_name_;
};
}

5
tests/main.cpp Normal file
View File

@ -0,0 +1,5 @@
#include <argparse.hpp>
int main() {
return 0;
}