lukas
ba4af36df0
* method to check telegram support out of config * getters in Config.cpp * lots of reformatings and cdoc
23 lines
305 B
C++
23 lines
305 B
C++
//
|
|
// Created by lukas on 07.05.20.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
/**
|
|
* General helper class for IP actions
|
|
*/
|
|
class IpHelper {
|
|
public:
|
|
/**
|
|
* check if ip is valid
|
|
* @param ip ip address to test
|
|
* @return validity
|
|
*/
|
|
static bool isIpValid(std::string ip);
|
|
|
|
private:
|
|
};
|