checks-parser/ofd/ofd.h

23 lines
343 B
C
Raw Normal View History

#ifndef OFD_H
#define OFD_H
#include <string>
#include <vector>
#include "module.h"
class OFD {
OFDModule module;
public:
OFD();
OFD(std::string);
std::vector<std::string> search_ofds();
void set_module(std::string);
2024-08-30 22:12:14 +03:00
std::string get_check_data(std::string fn, std::string fd, std::string fp);
};
#endif // OFD_H