17 lines
212 B
C++
17 lines
212 B
C++
#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
|