blob: 4cbacfaf3bba505736d2fef0972bff8a5a21ee37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
#ifndef __MUNIA_MESSAGEPARSER_H__
#define __MUNIA_MESSAGEPARSER_H__
#include "message.h"
#include <string>
MessageList parse_msg(std::string msg);
MessageList parse_msg_client(std::string msg);
std::string msg_tostring(message_t msg);
message_t create_msg_create(task_t task);
message_t create_msg_update(task_t task, const std::string &attr);
message_t create_msg_remove(task_t task);
message_t create_msg_move(taskid_t id, taskid_t to);
#endif
|