#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; }; }