d933eae338
git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/branches/hilnius@12865 178a84e3-b1eb-0310-8ba1-8eac791a3b58
18 lines
195 B
C++
18 lines
195 B
C++
#ifndef HTTP_FUNCTIONS_HPP
|
|
#define HTTP_FUNCTIONS_HPP
|
|
|
|
#include <string>
|
|
|
|
namespace HTTP
|
|
{
|
|
|
|
void init();
|
|
void shutdown();
|
|
|
|
std::string getPage(std::string url);
|
|
|
|
|
|
}
|
|
|
|
#endif // HTTP_FUNCTIONS_HPP
|