15 lines
204 B
C++
15 lines
204 B
C++
// httpclient.h
|
|
|
|
#pragma once
|
|
|
|
#include "../stdafx.h"
|
|
|
|
namespace mongo {
|
|
|
|
class HttpClient {
|
|
public:
|
|
int get( string url , map<string,string>& headers, stringstream& data );
|
|
};
|
|
}
|
|
|