summaryrefslogtreecommitdiff
path: root/Source/cmServerProtocol.h
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@qt.io>2016-09-09 10:01:44 +0200
committerTobias Hunger <tobias.hunger@qt.io>2016-09-20 20:52:38 +0200
commit537efe0561ef6a690fd7aac34ce1e4a46614f2e4 (patch)
tree3affd22e6db5f02e4227153adb37b0c626869045 /Source/cmServerProtocol.h
parentca7799482cbbb38b667fd5d045a0fc95d09a8cf2 (diff)
downloadcmake-537efe0561ef6a690fd7aac34ce1e4a46614f2e4.tar.gz
server-mode: Report Messages from cmake to clients
Pass messages sent from cmake via Error(...) or Message(...) on to clients.
Diffstat (limited to 'Source/cmServerProtocol.h')
-rw-r--r--Source/cmServerProtocol.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmServerProtocol.h b/Source/cmServerProtocol.h
index 03d4300014..bab949b759 100644
--- a/Source/cmServerProtocol.h
+++ b/Source/cmServerProtocol.h
@@ -70,6 +70,8 @@ private:
void ReportProgress(int min, int current, int max,
const std::string& message) const;
+ void ReportMessage(const std::string& message,
+ const std::string& title) const;
cmServer* m_Server;