blob: 026e5163203ba76adfe5d1fc8e753cbeb5299f2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "parser.h"
#include <string>
#include <vector>
Parser::Parser(std::string& input) {
std::vector<std::string> result;
for (auto& c : input) {
std::string parsed(1, c);
result.push_back(parsed);
}
}
|