Changeset 15101 for trunk/FACT++
- Timestamp:
- 03/18/13 14:54:54 (12 years ago)
- Location:
- trunk/FACT++/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/InterpreterV8.cc
r15078 r15101 2229 2229 } 2230 2230 2231 void InterpreterV8::JsLoad(const std::string &) 2232 { 2233 Readline::SetScriptDepth(1); 2234 } 2235 2236 void InterpreterV8::JsEnd(const std::string &) 2237 { 2238 Readline::SetScriptDepth(0); 2239 } 2240 2231 2241 bool InterpreterV8::JsRun(const string &filename, const map<string, string> &map) 2232 2242 { -
trunk/FACT++/src/InterpreterV8.h
r15078 r15101 171 171 } 172 172 173 virtual void JsLoad(const std::string & ) { }173 virtual void JsLoad(const std::string & = ""); 174 174 virtual void JsStart(const std::string &) { } 175 virtual void JsEnd(const std::string & ) { }175 virtual void JsEnd(const std::string & = ""); 176 176 virtual void JsPrint(const std::string & = "") { } 177 177 virtual void JsAlarm(const std::string & = "") { }
Note:
See TracChangeset
for help on using the changeset viewer.