DynuIPRefresher/inc/api/IPAPI.h

22 lines
322 B
C
Raw Permalink Normal View History

/**
* IPAPI for getting global ip of current network
*
* @author Lukas Heiligenbrunner
* @date 18.06.2019
*/
#pragma once
#include "API.h"
#include <string>
class IPAPI : API {
public:
/**
* get global ip of current internet connection
* @return global ip
*/
std::string getGlobalIp();
};