diff options
author | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2015-07-28 05:33:02 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2015-07-28 05:33:02 +0300 |
commit | a076f8228ff6fe8a2f9b7ac6634b46fb598fd711 (patch) | |
tree | 9686790893da36f6155696dfa3204dd81153a63e /server/include | |
parent | 7aade009f69a149ca28f7dd0af5db78d1caab00e (diff) |
a bit of implementation of client<->server protocol
Diffstat (limited to 'server/include')
-rw-r--r-- | server/include/utilities.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/server/include/utilities.h b/server/include/utilities.h index de97f2f..9becc48 100644 --- a/server/include/utilities.h +++ b/server/include/utilities.h @@ -23,9 +23,14 @@ #include <string> +#include <memory> std::string replace_home_var(const std::string &path); +class server_msg; + +std::shared_ptr<char*> pack_msg(server_msg *msg, int *size); + |