DynuIPRefresher/inc/api/IPAPI.h

19 lines
247 B
C
Raw Normal View History

//
// 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();
};