27 #ifndef __TERRALIB_GRAPH_INTERNAL_DIRECTEDGRAPH_H 
   28 #define __TERRALIB_GRAPH_INTERNAL_DIRECTEDGRAPH_H 
   31 #include "../Config.h" 
   42     class AbstractCachePolicy;
 
   43     class AbstractGraphLoaderStrategy;
 
   87         virtual std::vector<te::graph::Vertex*> getVertexNeighborhood(
int id);
 
   98         virtual bool isSinkVertex(
int id, 
bool& flag);
 
  116         virtual void add(
Edge* e);
 
  125         virtual void removeEdge(
int id);
 
  134         virtual std::vector<te::graph::Edge*> getOutEdges(
int vId);
 
  142 #endif // __TERRALIB_GRAPH_INTERNAL_DIRECTEDGRAPH_H 
Class used to define the edge struct of a graph. Its compose with a identifier, the vertex origin and...
 
#define TEGRAPHEXPORT
You can use this macro in order to export/import classes and functions from this module. 
 
This class define the main functions necessary to save and load the graph data and metadata informati...
 
This is the main graph implementation, that uses a cache policy anda graph loader to get all elements...
 
This is a implementation of a Directed Graph. By convention a directed graph provides access to out-e...
 
This is the main graph implementation, that uses a cache policy anda graph loader to get all elements...
 
This class is used to set the main functions of a cache policy.