checks-parser/parser/parser.h

26 lines
381 B
C
Raw Normal View History

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