23 lines
334 B
C++
23 lines
334 B
C++
#ifndef PARSER_H
|
|
#define PARSER_H
|
|
|
|
#include "module.h"
|
|
#include <string>
|
|
#include <vector>
|
|
#include "../goods/goods.h"
|
|
|
|
class Parser {
|
|
|
|
StoreModule module;
|
|
public:
|
|
Parser();
|
|
|
|
std::vector<std::string> search_modules();
|
|
|
|
void set_module(std::string);
|
|
|
|
std::vector<Goods> parse (std::wstring);
|
|
};
|
|
|
|
#endif // PARSER_H
|