abstracted out ScriptEngine to allow for playing with other javascript engines

This commit is contained in:
Eliot Horowitz
2009-04-23 14:28:22 -04:00
parent 88c85138e1
commit 1f696e2143
11 changed files with 140 additions and 77 deletions

20
scripting/engine.cpp Normal file
View File

@@ -0,0 +1,20 @@
// engine.cpp
#include "engine.h"
namespace mongo {
Scope::Scope(){
}
Scope::~Scope(){
}
ScriptEngine::ScriptEngine(){
}
ScriptEngine::~ScriptEngine(){
}
ScriptEngine * globalScriptEngine;
}