fix client compile

This commit is contained in:
Eliot Horowitz
2009-12-03 17:48:18 -05:00
parent 9c2f1a1bd1
commit b4029bed07
3 changed files with 20 additions and 20 deletions

View File

@@ -16,6 +16,9 @@
*/
#include "../stdafx.h"
#include "../client/dbclient.h"
#include "../db/dbinfo.h"
#include "../db/dbhelpers.h"
namespace mongo {
@@ -47,4 +50,10 @@ namespace mongo {
bool haveLocalShardingInfo( const string& ns ){
return false;
}
auto_ptr<CursorIterator> Helpers::find( const char *ns , BSONObj query , bool requireIndex ){
uassert( "Helpers::find can't be used in client" , 0 );
auto_ptr<CursorIterator> i;
return i;
}
}