Fix custom javascript interpreter configuration for OSX.

This commit is contained in:
Oliver Buchtala 2014-02-26 22:46:24 +01:00
commit 424e3f4712
7 changed files with 42 additions and 15 deletions

View file

@ -29,6 +29,10 @@ public:
virtual bool RunShell();
void setModulePath(const std::vector<std::string>& modulePath) {
module_path = modulePath;
}
protected:
virtual bool InitializeEngine() = 0;
@ -42,6 +46,7 @@ protected:
protected:
std::vector<HANDLE> loaded_modules;
std::vector<std::string> module_path;
};