26 #ifndef __TERRALIB_SQLITE_INTERNAL_MODULE_H 
   27 #define __TERRALIB_SQLITE_INTERNAL_MODULE_H 
   30 #include "../plugin/Plugin.h" 
   52 #define TESQLITEEXPORT  __declspec(dllexport) 
   56 #endif  // __TERRALIB_SQLITE_INTERNAL_MODULE_H 
The basic information about a plugin. 
 
void startup()
Do nothing! Just set plugin as started. 
 
A base class for plugin types. 
 
void shutdown()
Do nothing! Just set plugin as stopped. 
 
#define PLUGIN_CALL_BACK_DECLARATION(PLUGIN_EXPORT_MACRO)
This macro should be used by C++ plugins in order to declare the exportable/callable DLL function...
 
Module(const te::plugin::PluginInfo &pluginInfo)