checks-parser/parser/parser.h

23 lines
334 B
C
Raw Permalink Normal View History

#ifndef PARSER_H
#define PARSER_H
#include "module.h"
#include <string>
#include <vector>
2024-08-20 02:38:40 +03:00
#include "../goods/goods.h"
class Parser {
StoreModule module;
public:
Parser();
std::vector<std::string> search_modules();
void set_module(std::string);
2024-08-20 02:38:40 +03:00
std::vector<Goods> parse (std::wstring);
};
#endif // PARSER_H