DynuIPRefresher/inc/api/IPAPI.h
lukas ba4af36df0 * new class for IP utils
* method to check telegram support out of config
* getters in Config.cpp
* lots of reformatings and cdoc
2020-05-07 14:54:40 +02:00

19 lines
247 B
C++

//
// Created by lukas on 18.06.19.
//
#pragma once
#include "API.h"
#include <string>
class IPAPI : API {
public:
/**
* get global ip of current internet connection
* @return global ip
*/
std::string getGlobalIp();
};