#ifndef CHECKS_PARSER_EMAIL_PARSER #define CHECKS_PARSER_EMAIL_PARSER #include #include class EmailParser { public: EmailParser(); std::map parse(std::string &email_content); std::map parse_file(std::string path); }; #endif // CHECKS_PARSER_EMAIL_PARSER