blob: e43233c2b6a2780ba9e85bd771beae38be793434 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef __HIPPO_REST_REQTUEST_H__
#define __HIPPO_REST_REQTUEST_H__
#include <string>
class HippoRestRequest
{
public:
static int getBlocking(const std::string &url, std::string *result);
};
#endif
|