summaryrefslogtreecommitdiff
path: root/src/checker/errors/mail/empty.hpp
blob: 880f5c141af679507c7199ccc5503fa1fcec43fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include "checker/errors/types/imails_error.hpp"

namespace smtp::checker::errors::mail
{
    class Empty : public types::IErrorMails
    {
    public:
        Empty() = default;
        ~Empty() override = default;

        bool Check( std::string const& line ) const override;
    };
}