summaryrefslogtreecommitdiff
path: root/src/checker/errors/types/imails_error.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/checker/errors/types/imails_error.hpp')
-rw-r--r--src/checker/errors/types/imails_error.hpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/checker/errors/types/imails_error.hpp b/src/checker/errors/types/imails_error.hpp
new file mode 100644
index 0000000..d696bbd
--- /dev/null
+++ b/src/checker/errors/types/imails_error.hpp
@@ -0,0 +1,19 @@
+#pragma once
+
+#include <memory>
+#include <string>
+
+namespace smtp::checker::errors::types
+{
+ class IError
+ {
+ public:
+ IError() = default;
+ virtual ~IError() = default;
+
+ virtual bool Check( std::string const& line ) const = 0;
+ };
+ using IErrorPtr = std::shared_ptr<IError>;
+}
+
+