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

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

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

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