added main
This commit is contained in:
@@ -4,6 +4,8 @@
|
||||
|
||||
#include "CommandParser.h"
|
||||
|
||||
#include <sstream>
|
||||
|
||||
CommandParser & CommandParser::getInstance() {
|
||||
static CommandParser instance;
|
||||
return instance;
|
||||
@@ -12,7 +14,7 @@ CommandParser & CommandParser::getInstance() {
|
||||
std::vector<std::string> CommandParser::parseLine(const std::string &input) {
|
||||
std::vector<std::string> output{};
|
||||
/// Konvertiere den Input String in einen IStringStream, damit dieser bei Leerzeichen gesplittet werden kann
|
||||
std::istringstream<char> iss(input);
|
||||
std::istringstream iss(input);
|
||||
std::string out;
|
||||
do {
|
||||
/// Trenne den IStringStream bei jedem Leerzeichen und füge die Befehl(e)/-sargumente dem Output hinzu
|
||||
|
||||
Reference in New Issue
Block a user