#pragma once #include "checker/errors/types/isettings_error.hpp" namespace smtp::checker::errors::settings { class Server : public types::IErrorSettings { public: Server() = default; ~Server() override = default; bool Check( manage::SettingsFileDataType const& line ) const override; private: bool IsNormalName( std::string const& line ) const; bool IsIpName( std::string const& line ) const; }; }