diff options
author | eportnov <eportnov@ibs.ru> | 2022-09-13 11:13:33 +0300 |
---|---|---|
committer | eportnov <eportnov@ibs.ru> | 2022-09-13 11:13:33 +0300 |
commit | dcbaf61e4968734d9b3bc41f704ea04d54746cea (patch) | |
tree | 95a796ba075edb1abf4edea29a11544fa7344754 /src/managment/builder/settings.hpp | |
parent | df33492b80495fd36a1a488c0b0a39753f1df415 (diff) | |
download | obmc-sila-smtp-dcbaf61e4968734d9b3bc41f704ea04d54746cea.tar.xz |
add file readingfeature/mail_user_managment
Diffstat (limited to 'src/managment/builder/settings.hpp')
-rw-r--r-- | src/managment/builder/settings.hpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/managment/builder/settings.hpp b/src/managment/builder/settings.hpp new file mode 100644 index 0000000..1089b06 --- /dev/null +++ b/src/managment/builder/settings.hpp @@ -0,0 +1,19 @@ +#pragma once + +#include "managment/settings.hpp" +#include "file/settings.hpp" + +namespace smtp::manage::builder +{ + class Settings + { + public: + Settings() = default; + ~Settings() = default; + + smtp::manage::Settings Build() const; + private: + file::Settings GetFileSettings() const; + }; + +} |