checks-parser/ofd/ofd.h

23 lines
334 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);
std::string get_check_data(std::string, std::string, std::string);
};
#endif // OFD_H