29 #ifndef __TERRALIB_GRAPH_INTERNAL_ABSTRACTGRAPHBUILDER_H 
   30 #define __TERRALIB_GRAPH_INTERNAL_ABSTRACTGRAPHBUILDER_H 
   33 #include "../Config.h" 
   40 #include <boost/shared_ptr.hpp> 
This abstract class provides the common functions for graph builder classes. Each builder strategy ha...
 
AbstractGraphBuilder()
Default constructor.
 
std::string getErrorMessage()
Get error message.
 
std::string m_errorMessage
Error message.
 
boost::shared_ptr< AbstractGraph > m_graph
Graph object.
 
boost::shared_ptr< AbstractGraph > getGraph()
Get generated graph.
 
virtual ~AbstractGraphBuilder()
Virtual destructor.
 
Abstract class used to define the main functions of graph struct. All graph implementations must used...
 
#define TEGRAPHEXPORT
You can use this macro in order to export/import classes and functions from this module.