checks-parser/ofd/ofd.h

14 lines
281 B
C
Raw Normal View History

2024-11-22 23:26:42 +03:00
#ifndef OFD_H
#define OFD_H
#include <string>
class OFD {
public:
OFD();
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