Files
GUI/src/utilities/InputFormatValidator.h
2024-04-25 14:37:38 +08:00

17 lines
322 B
C++

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