plans and sketches
This commit is contained in:
15
email_parser/emailparser.h
Normal file
15
email_parser/emailparser.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#ifndef CHECKS_PARSER_EMAIL_PARSER
|
||||
#define CHECKS_PARSER_EMAIL_PARSER
|
||||
|
||||
#include <check/check.h>
|
||||
|
||||
class EmailParser {
|
||||
std::string get_payload_in_email(std::string &email_content);
|
||||
// std::vector<int> find_base64_blocks_in_email(std::string &email_content);
|
||||
public:
|
||||
EmailParser();
|
||||
Check parse(std::string &email_content);
|
||||
Check parse_file(std::string path);
|
||||
};
|
||||
|
||||
#endif // CHECKS_PARSER_EMAIL_PARSER
|
||||
Reference in New Issue
Block a user