summaryrefslogtreecommitdiff
path: root/src/checker/errors/mail/empty.hpp
blob: 945650e4c32056514aefc2b7c980ab1d4cac3630 (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::settings
{
    class Empty : public types::IErrorMails
    {
    public:
        Empty() = default;
        ~Empty() override = default;

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