0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 17:10:48 +01:00

stub createDirectClient for tools MINOR

This commit is contained in:
Aaron 2009-05-14 13:19:13 -04:00
parent 3e46a4507c
commit 774f8ec70c

View File

@ -6,6 +6,14 @@
#include <boost/filesystem/operations.hpp>
namespace mongo {
DBClientBase *createDirectClient() {
cout << "no direct client available" << endl;
assert( false );
return 0;
}
} // namespace mongo
using namespace std;
using namespace mongo;