Files
mongo/util/httpclient.h
2009-07-17 15:49:24 -04:00

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 );
};
}