14 lines
135 B
C++
14 lines
135 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace web
|
|
{
|
|
|
|
class Client
|
|
{
|
|
void post(const std::string& url, const std::string& body);
|
|
};
|
|
|
|
}
|