summaryrefslogtreecommitdiff
path: root/src/checker/errors/types/imails_error.hpp
blob: d696bbd52e2bf07d95ff0bf0b8314dbdb2efb145 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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>;
}