14 lines
281 B
C
14 lines
281 B
C
|
#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
|