![]() |
Tulip
4.6.0
Better Visualization Through Research
|
00001 /* 00002 * 00003 * This file is part of Tulip (www.tulip-software.org) 00004 * 00005 * Authors: David Auber and the Tulip development Team 00006 * from LaBRI, University of Bordeaux 00007 * 00008 * Tulip is free software; you can redistribute it and/or modify 00009 * it under the terms of the GNU Lesser General Public License 00010 * as published by the Free Software Foundation, either version 3 00011 * of the License, or (at your option) any later version. 00012 * 00013 * Tulip is distributed in the hope that it will be useful, 00014 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 00016 * See the GNU General Public License for more details. 00017 * 00018 */ 00019 ///@cond DOXYGEN_HIDDEN 00020 00021 00022 #ifndef JSON_TOKENS_H 00023 #define JSON_TOKENS_H 00024 00025 #include <string> 00026 00027 const std::string GraphToken = "graph"; 00028 const std::string GraphIDToken = "graphID"; 00029 const std::string NodesIDsToken = "nodesIDs"; 00030 const std::string NodesNumberToken = "nodesNumber"; 00031 const std::string EdgesToken = "edges"; 00032 const std::string EdgesNumberToken = "edgesNumber"; 00033 const std::string EdgesValuesToken = "edgesValues"; 00034 const std::string NodesValuesToken = "nodesValues"; 00035 const std::string AttributesToken = "attributes"; 00036 const std::string EdgesIDsToken = "edgesIDs"; 00037 const std::string EdgeDefaultToken = "edgeDefault"; 00038 const std::string NodeDefaultToken = "nodeDefault"; 00039 const std::string PropertiesToken = "properties"; 00040 const std::string TypeToken = "type"; 00041 const std::string SubgraphsToken = "subgraphs"; 00042 00043 #endif //JSON_TOKENS_H 00044 ///@endcond