blob: 1dcb4a09b3be071d5f9f876be641a3deb9c13869 (
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
|