root / custompackages / graph-parser / src / parser.h @ 911d0520
History | View | Annotate | Download (496 Bytes)
1 | 04a9ef10 | Quynh PX Nguyen | //
|
---|---|---|---|
2 | // Created by quynh on 12/13/15.
|
||
3 | //
|
||
4 | |||
5 | #ifndef GRAPH_PARSER_PARSER_H
|
||
6 | #define GRAPH_PARSER_PARSER_H
|
||
7 | |||
8 | #include <boost/algorithm/string.hpp> |
||
9 | 6a12e353 | Quynh PX Nguyen | #include <boost/property_tree/json_parser.hpp> |
10 | #include <boost/foreach.hpp> |
||
11 | 04a9ef10 | Quynh PX Nguyen | #include "common.h" |
12 | cb770240 | Quynh PX Nguyen | #include "graph_manager.h" |
13 | 04a9ef10 | Quynh PX Nguyen | |
14 | 162e1bda | Quynh PX Nguyen | void readEdgeFileGraphManager(string filepath, GraphManager& gm);
|
15 | void readJsonGraphManager(string filepath, GraphManager & gm);
|
||
16 | void readComplexJsonGraphManager(string filepath, GraphManager& gm);
|
||
17 | 6a12e353 | Quynh PX Nguyen | |
18 | 04a9ef10 | Quynh PX Nguyen | #endif //GRAPH_PARSER_PARSER_H |
19 | |||
20 |