summaryrefslogtreecommitdiff
path: root/src/management/builder/settings.hpp
blob: 64f9384f7263bc3ad021eb84e849e902a259e5f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once

#include "management/settings.hpp"
#include "file/settings.hpp"
#include "checker/registrator_settings.hpp"

namespace smtp::manage::builder
{
    class Settings
    {
    public:
        Settings() = default;
        ~Settings() = default;

        smtp::manage::Settings Build() const;
    private:
        file::Settings GetFileSettings() const;
		checker::RegistratorSettings BuildErrorRegistrator() const;
    };

}