DynuIPRefresher/src/Logger.h

19 lines
259 B
C
Raw Normal View History

2019-05-05 16:35:38 +02:00
//
// Created by lukas on 05.05.19.
//
#ifndef IPREFRESHER_LOGGER_H
#define IPREFRESHER_LOGGER_H
class Logger {
public:
void logToLogfile(std::string text);
void safeip(std::string ip);
std::string readip();
};
#endif //IPREFRESHER_LOGGER_H