| 874 | // Help DB specific functions. |
| 875 | |
| 876 | string getHelpString(const string &topic) |
| 877 | { |
| 878 | string help = _query_database(HelpDB, topic, false, true); |
| 879 | if (help.empty()) |
| 880 | help = "Error! The help for \"" + topic + "\" is missing!"; |
| 881 | return help; |
| 882 | } |
| 883 | |
| 884 | ///////////////////////////////////////////////////////////////////////////// |
| 885 | // FAQ DB specific functions. |
no test coverage detected