26 #ifndef __TERRALIB_FE_SERIALIZATION_XML_INTERNAL_ABSTRACTOP_H 
   27 #define __TERRALIB_FE_SERIALIZATION_XML_INTERNAL_ABSTRACTOP_H 
   30 #include "../../../common/Singleton.h" 
   31 #include "../../Config.h" 
   38 #include <boost/function.hpp> 
   80           std::map<std::string, const char*> 
m_names; 
 
   86 #endif  // __TERRALIB_FE_SERIALIZATION_XML_INTERNAL_ABSTRACTOP_H 
This class models a XML reader object. 
 
boost::function< te::fe::AbstractOp *(const char *opName, te::xml::Reader &)> AbstractOpReadFnctType
 
std::map< std::string, AbstractOpFnctSerializeType > AbstractOpFnctIdxType
 
This class models a XML writer object. 
 
#define TEFEEXPORT
You can use this macro in order to export/import classes and functions from this module. 
 
AbstractOpFnctIdxType m_fncts
 
std::map< std::string, const char * > m_names
Auxiliary map of string to te::fe::Global names pointers. 
 
boost::function< void(const te::fe::AbstractOp *, te::xml::Writer &)> AbstractOpWriteFnctType
 
std::pair< AbstractOpReadFnctType, AbstractOpWriteFnctType > AbstractOpFnctSerializeType
 
An abstract interface for operators. 
 
Template support for singleton pattern.