CLI: Added A2 ctor

This commit is contained in:
Paul Beckingham 2016-04-02 13:40:26 -04:00
parent 644439e587
commit cb6d7b0abe
2 changed files with 13 additions and 0 deletions

View file

@ -28,6 +28,11 @@
#include <CLI.h>
#include <shared.h>
////////////////////////////////////////////////////////////////////////////////
A2::A2 (const std::string& raw, Lexer::Type lextype)
{
}
////////////////////////////////////////////////////////////////////////////////
void CLI::entity (const std::string& category, const std::string& name)
{

View file

@ -27,10 +27,18 @@
#ifndef INCLUDED_CLI
#define INCLUDED_CLI
#include <Lexer.h>
#include <string>
#include <vector>
#include <map>
// Represents a single argument.
class A2
{
public:
A2 (const std::string&, Lexer::Type);
};
// Represents the command line.
class CLI
{