26 #ifndef __TERRALIB_DATATYPE_INTERNAL_DATACONVERTERMANAGER_H    27 #define __TERRALIB_DATATYPE_INTERNAL_DATACONVERTERMANAGER_H    30 #include "../common/Singleton.h"   109       std::pair<int, int> mapping(src, dst);
   116 #endif  // __TERRALIB_DATATYPE_INTERNAL_DATACONVERTERMANAGER_H An exception class for the DataType module. 
 
std::map< std::pair< int, int >, DataTypeConverter > m_convMap
A map: (source-data-type, target-data-type) -> data type converter. 
 
Base exception class for plugin module. 
 
#define TEDATATYPEEXPORT
You can use this macro in order to export/import classes and functions from this module. 
 
Configuration flags for the DataType module of TerraLib. 
 
Definition of data type converter. 
 
A singleton for managing the data type converter available in the system. 
 
const DataTypeConverter & get(int src, int dst)
It returns a data type converter for the given source and destination data types. ...
 
boost::function1< AbstractData *, AbstractData * > DataTypeConverter
The definition of the data type converter. 
 
Template support for singleton pattern.