root / custompackages / graph-parser / src / parser.h @ 911d0520
History | View | Annotate | Download (496 Bytes)
1 |
//
|
---|---|
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 |
#include <boost/property_tree/json_parser.hpp> |
10 |
#include <boost/foreach.hpp> |
11 |
#include "common.h" |
12 |
#include "graph_manager.h" |
13 |
|
14 |
void readEdgeFileGraphManager(string filepath, GraphManager& gm);
|
15 |
void readJsonGraphManager(string filepath, GraphManager & gm);
|
16 |
void readComplexJsonGraphManager(string filepath, GraphManager& gm);
|
17 |
|
18 |
#endif //GRAPH_PARSER_PARSER_H |
19 |
|
20 |
|
21 |
|