19 lines
208 B
C++
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
|
|
|