blob: d783c5a9ae0b855b9c0b76de0790f959fb66d718 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// httpclient.h
#pragma once
#include "../stdafx.h"
namespace mongo {
class HttpClient {
public:
int get( string url , map<string,string>& headers, stringstream& data );
};
}
|