checks-parser/ofd/ofd.h

14 lines
281 B
C
Raw Normal View History

#ifndef OFD_H
#define OFD_H
#include <string>
class OFD {
public:
OFD();
2024-10-22 13:18:19 +03:00
void ask_captcha();
std::string request_and_parse_check(long fiscal_number, long fiscal_document, long fiscal_sign, std::string datetime, double total, std::string captcha);
};
#endif // OFD_H