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

#include "general/struct.hpp"

namespace smtp::converter
{
    class FileToString
    {
    public:
        FileToString() = default;
        ~FileToString() = default;

        std::list<std::string> Convert( general::SettingsFileDataType const& from ) const;
    private:
        std::string BuildParam( std::pair < std::string, std::string > const& data ) const;
    };
}