initial docker support on x86

This commit is contained in:
David
2019-05-28 14:27:57 +10:00
commit 7a6b39bf18
23 changed files with 1403 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
// inputparser.h
// @author iain
#ifndef INPUTPARSER_H
#define INPUTPARSER_H
#include <vector>
class InputParser
{
std::vector <std::string> tokens;
public:
InputParser (int &argc, char **argv);
const std::string& getCmdOption(const std::string &option) const;
bool cmdOptionExists(const std::string &option) const;
};
#endif // ___INPUTPARSER_H