summaryrefslogtreecommitdiff
path: root/src/file/converter/full.hpp
diff options
context:
space:
mode:
authoreportnov <eportnov@ibs.ru>2022-09-13 15:03:25 +0300
committereportnov <eportnov@ibs.ru>2022-09-13 15:03:25 +0300
commite8aeea36e6b48e18d27f9d7857cd29524cc8aa1f (patch)
treeb99540f810072b746d033d6cd8d06aabb75afcad /src/file/converter/full.hpp
parenta58088ec7a45bb86b155a8ef9514b35b0ba8d1c9 (diff)
downloadobmc-sila-smtp-e8aeea36e6b48e18d27f9d7857cd29524cc8aa1f.tar.xz
add writing filesbugfix/write_file
Diffstat (limited to 'src/file/converter/full.hpp')
-rw-r--r--src/file/converter/full.hpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/file/converter/full.hpp b/src/file/converter/full.hpp
new file mode 100644
index 0000000..5ffccd4
--- /dev/null
+++ b/src/file/converter/full.hpp
@@ -0,0 +1,25 @@
+#pragma once
+
+#include <unordered_map>
+#include <string>
+
+#include "managment/general.hpp"
+
+namespace smtp::file::converter
+{
+ using ParsedDataType = std::unordered_map<std::string, std::string>;
+
+ class Full
+ {
+ public:
+ Full() = default;
+ ~Full() = default;
+
+ manage::SettingsFields Convert( std::unordered_map<std::string, std::string> const& from ) const;
+ std::unordered_map<std::string, std::string> Convert( manage::SettingsFields const& from ) const;
+ private:
+
+ };
+}
+
+