summaryrefslogtreecommitdiff
path: root/src/file/settings/parser.hpp
blob: e7de2f6223cb2c738f2996485fb7e1a4b5b694a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

#include <utility>
#include <string>

namespace smtp::file::parser
{
    using ParseResult = std::pair<std::string,std::string>;

    class Settings
    {
    public:
        Settings() = default;
        ~Settings() = default;

        ParseResult Parse( std::string const& line ) const;
    };

}