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.hpp14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/checker/errors/types/imails_error.hpp b/src/checker/errors/types/imails_error.hpp
index d696bbd..277f82e 100644
--- a/src/checker/errors/types/imails_error.hpp
+++ b/src/checker/errors/types/imails_error.hpp
@@ -5,15 +5,21 @@
namespace smtp::checker::errors::types
{
- class IError
+ class IErrorMails
{
public:
- IError() = default;
- virtual ~IError() = default;
+ IErrorMails() = default;
+ virtual ~IErrorMails() = default;
+
+ std::string GetMethodName() const
+ {
+ static const std::string METHOD_NAME = "Check mails";
+ return METHOD_NAME;
+ }
virtual bool Check( std::string const& line ) const = 0;
};
- using IErrorPtr = std::shared_ptr<IError>;
+ using IErrorMailsPtr = std::shared_ptr<IErrorMails>;
}