summaryrefslogtreecommitdiff
path: root/src/checker/errors/mail/at_sign.hpp
blob: 38a7d969f72378abfeb73f3e69333efebe7273f5 (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::mail
{
    class AtSign : public types::IErrorMails
    {
    public:
        AtSign() = default;
        ~AtSign() override = default;

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