#include <vector>
#include "OpenGL_Includes.h"
#include "PolyLine.h"
#include "LineFeatureObject.h"
#include "SceneBluePrint.h"
#include "ReferenceSystem.h"
#include "PointCloud.h"
#include "BSpline.h"
#include "ReducableUndirectedGraph.h"
#include "ColorisationTable.h"
#include "Timer.h"
#include <pcl/point_cloud.h>
#include <pcl/search/kdtree.h>
#include <boost/config.hpp>
#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/dijkstra_shortest_paths.hpp>
#include <boost/graph/graph_traits.hpp>
Go to the source code of this file.
|
typedef boost::adjacency_list_traits< boost::vecS, boost::vecS, boost::undirectedS >::vertex_descriptor | geGIS::GraphVertex |
|
typedef boost::property< boost::edge_weight_t, double > | geGIS::EdgeWeight |
|
typedef boost::adjacency_list< boost::listS, boost::vecS, boost::undirectedS, boost::property< boost::vertex_distance_t, double, boost::property< boost::vertex_predecessor_t, GraphVertex > >, EdgeWeight > | geGIS::SimpleUndirectedGraph |
|