Files
AlarmServer/util.h
T
2017-04-28 18:45:26 +02:00

19 lines
208 B
C++

#ifndef UTIL_H
#define UTIL_H
#include <string>
#include "httpClient.h"
struct context
{
public:
std::string path;
httpClient client;
std::string url;
};
std::string getTimeString();
#endif // UTIL_H