Changeset 15079
- Timestamp:
- 03/15/13 13:41:07 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/RemoteControl.h
r15042 r15079 168 168 void JsOut(const std::string &msg) { lin << msg << endl; } 169 169 void JsResult(const std::string &msg) { lin << kBlue << " = " << msg << '\n' << endl; } 170 void JsPrint(const std::string &msg) { if (fImp) fImp->Comment(msg .empty()?" ":msg); }171 void JsAlarm(const std::string &msg) { if (fImp) fImp->Alarm(msg .empty()?" ":msg); }170 void JsPrint(const std::string &msg) { if (fImp) fImp->Comment(msg); } 171 void JsAlarm(const std::string &msg) { if (fImp) fImp->Alarm(msg); } 172 172 void JsException(const std::string &str) { if (fImp) fImp->Error(str.empty()?"|":("| "+str)); } 173 173 bool JsHasState(int s) const { return fImp && fImp->HasState(s); }
Note:
See TracChangeset
for help on using the changeset viewer.