26 #ifndef __TERRALIB_COMMON_INTERNAL_MODULE_H 
   27 #define __TERRALIB_COMMON_INTERNAL_MODULE_H 
Template support for singleton pattern.
 
This singleton defines an entry in the Platform for the TerraLib Common Runtime module.
 
std::shared_ptr< TerraLib::Module > m_module
 
Module()
The singleton constructor will make some initializations.
 
static void initialize()
This is the startup function for the TerraLib Common Runtime module.
 
static const Module & sm_module
let's force C++ to make an static initialization.
 
static void finalize()
This is the cleanup function for the TerraLib Common Runtime module.
 
Template support for singleton pattern.