diff options
author | Justin Berger <j.david.berger@gmail.com> | 2017-07-20 02:23:34 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-08-31 19:35:04 (GMT) |
commit | 7ef28843618519c222806a0df82ed8f87ad2ca0c (patch) | |
tree | 723cabf43743d04b7ed34edac2cef223eaba2ac0 /Source/cmConnection.h | |
parent | dc7a18d82eb0013a2afbdea9ba5fec131fc3179f (diff) | |
download | CMake-7ef28843618519c222806a0df82ed8f87ad2ca0c.zip CMake-7ef28843618519c222806a0df82ed8f87ad2ca0c.tar.gz CMake-7ef28843618519c222806a0df82ed8f87ad2ca0c.tar.bz2 |
server: Moved buffer formatting into bufferstrategy
Diffstat (limited to 'Source/cmConnection.h')
-rw-r--r-- | Source/cmConnection.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Source/cmConnection.h b/Source/cmConnection.h index b1b51fe..ddb7744 100644 --- a/Source/cmConnection.h +++ b/Source/cmConnection.h @@ -39,6 +39,17 @@ public: virtual std::string BufferMessage(std::string& rawBuffer) = 0; /*** + * Called to properly buffer an outgoing message. + * + * @param rawBuffer Message to format in the correct way + * + * @return Formatted message + */ + virtual std::string BufferOutMessage(const std::string& rawBuffer) const + { + return rawBuffer; + }; + /*** * Resets the internal state of the buffering */ virtual void clear(); |