#ifndef INPUTFORMATVALIDATOR_H #define INPUTFORMATVALIDATOR_H #include class InputFormatValidator { public: InputFormatValidator() = delete; static bool ValidateIpAddressFormat(const QString& aIpAddress); static bool ValidatePortFormat(const QString& aPort); }; #endif // INPUTFORMATVALIDATOR_H