Files
DynuIPRefresher/inc/IpHelper.h
T

23 lines
331 B
C++
Raw Permalink Normal View History

2020-05-08 16:45:27 +02:00
/**
* A helper class for general IP String actions
*
* @author Lukas Heiligenbrunner
* @date 07.05.2020
*/
2020-05-07 14:54:40 +02:00
#pragma once
#include <string>
class IpHelper {
public:
/**
* check if ip is valid
* @param ip ip address to test
* @return validity
*/
static bool isIpValid(std::string ip);
private:
};