Continuing work on the CLI functionality. Able to strip the command line actions, and flags with their values #7

This commit is contained in:
amazing-username
2019-06-02 14:51:00 -04:00
parent 6641f9db44
commit 56bf7f1900
11 changed files with 377 additions and 4 deletions
+15
View File
@@ -0,0 +1,15 @@
#ifndef FLAGS_H_
#define FLAGS_H_
#include<string>
namespace Models
{
struct Flags
{
std::string flag;
std::string value;
};
}
#endif