summaryrefslogtreecommitdiff
path: root/src/checker/registrator_settings.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/checker/registrator_settings.hpp')
-rw-r--r--src/checker/registrator_settings.hpp35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/checker/registrator_settings.hpp b/src/checker/registrator_settings.hpp
new file mode 100644
index 0000000..fbd12f5
--- /dev/null
+++ b/src/checker/registrator_settings.hpp
@@ -0,0 +1,35 @@
+#pragma once
+
+#include "errors/types/isettings_error.hpp"
+#include <list>
+
+namespace smtp::checker
+{
+ class RegistratorSettings
+ {
+ public:
+ RegistratorSettings() = default;
+ ~RegistratorSettings() = default;
+
+ void Add( errors::types::IErrorSettingsPtr const& error )
+ {
+ mErrors.push_back( error );
+ }
+
+ template<typename T>
+ bool Check( T const& line ) const
+ {
+ for( const auto& error: mErrors )
+ {
+ if( !error->Check( line ))
+ {
+ return false;
+ }
+ }
+ return true;
+ }
+
+ private:
+ std::list < errors::types::IErrorSettingsPtr > mErrors;
+ };
+}