summaryrefslogtreecommitdiff
path: root/src/file/converter/full.cpp
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.cpp
parenta58088ec7a45bb86b155a8ef9514b35b0ba8d1c9 (diff)
downloadobmc-sila-smtp-e8aeea36e6b48e18d27f9d7857cd29524cc8aa1f.tar.xz
add writing filesbugfix/write_file
Diffstat (limited to 'src/file/converter/full.cpp')
-rw-r--r--src/file/converter/full.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/file/converter/full.cpp b/src/file/converter/full.cpp
new file mode 100644
index 0000000..61f5a85
--- /dev/null
+++ b/src/file/converter/full.cpp
@@ -0,0 +1,17 @@
+#include "full.hpp"
+#include "file.hpp"
+#include "settings.hpp"
+
+namespace smtp::file::converter
+{
+ manage::SettingsFields Full::Convert( ParsedDataType const& from ) const
+ {
+ return File{}.Convert( from );
+ }
+
+ std::unordered_map<std::string, std::string> Full::Convert( manage::SettingsFields const& from ) const
+ {
+ return Settings{}.Convert( from );
+
+ }
+}