summaryrefslogtreecommitdiff
path: root/src/checker/errors/types/isettings_error.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/checker/errors/types/isettings_error.hpp')
-rw-r--r--src/checker/errors/types/isettings_error.hpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/checker/errors/types/isettings_error.hpp b/src/checker/errors/types/isettings_error.hpp
new file mode 100644
index 0000000..05f68e3
--- /dev/null
+++ b/src/checker/errors/types/isettings_error.hpp
@@ -0,0 +1,22 @@
+//
+// Created by claiff on 18.09.22.
+//
+
+#pragma once
+
+#include <memory>
+
+#include "management/general.hpp"
+
+namespace smtp::checker::errors::types
+{
+ class IErrorSettings
+ {
+ public:
+ IErrorSettings() = default;
+ virtual ~IErrorSettings() = default;
+
+ virtual bool Check( manage::SettingsFileDataType const& line ) const = 0;
+ };
+ using IErrorSettingsPtr = std::shared_ptr<IErrorSettings>;
+} \ No newline at end of file