0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 17:10:48 +01:00
mongodb/scripting/engine_v8.cpp
2009-05-04 11:49:18 -04:00

11 lines
183 B
C++

#include "engine_v8.h"
namespace mongo {
void ScriptEngine::setup(){
if ( !globalScriptEngine ){
globalScriptEngine = new V8ScriptEngine();
}
}
} // namespace mongo