Tulip  4.4.0
Better Visualization Through Research
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Groups Pages
JsonTokens.h
1 /*
2  *
3  * This file is part of Tulip (www.tulip-software.org)
4  *
5  * Authors: David Auber and the Tulip development Team
6  * from LaBRI, University of Bordeaux 1 and Inria Bordeaux - Sud Ouest
7  *
8  * Tulip is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU Lesser General Public License
10  * as published by the Free Software Foundation, either version 3
11  * of the License, or (at your option) any later version.
12  *
13  * Tulip is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16  * See the GNU General Public License for more details.
17  *
18  */
19 ///@cond DOXYGEN_HIDDEN
20 
21 
22 #ifndef JSON_TOKENS_H
23 #define JSON_TOKENS_H
24 
25 #include <string>
26 
27 const std::string GraphToken = "graph";
28 const std::string GraphIDToken = "graphID";
29 const std::string NodesIDsToken = "nodesIDs";
30 const std::string NodesNumberToken = "nodesNumber";
31 const std::string EdgesToken = "edges";
32 const std::string EdgesNumberToken = "edgesNumber";
33 const std::string EdgesValuesToken = "edgesValues";
34 const std::string NodesValuesToken = "nodes";
35 const std::string AttributesToken = "attributes";
36 const std::string EdgesIDsToken = "edgesIDs";
37 const std::string EdgeDefaultToken = "edgeDefault";
38 const std::string NodeDefaultToken = "nodeDefault";
39 const std::string PropertiesToken = "properties";
40 const std::string TypeToken = "type";
41 const std::string SubgraphsToken = "subgraphs";
42 
43 #endif //JSON_TOKENS_H
44 ///@endcond