- yhook: new outSingle() function, that just adds a linefeed to content

This commit is contained in:
svenhoefer
2016-02-22 23:51:37 +01:00
parent 246af91c7d
commit 922cc72abf
2 changed files with 6 additions and 0 deletions

View File

@@ -424,6 +424,11 @@ std::string CyhookHandler::outIndent() {
return "";
}
//-----------------------------------------------------------------------------
std::string CyhookHandler::outSingle(std::string _content) {
return _content + "\n";
}
//-----------------------------------------------------------------------------
std::string CyhookHandler::outPair(std::string _key, std::string _content, bool _next) {
std::string result = "";