22 #ifndef _EXPORTMODULE_H 
   23 #define _EXPORTMODULE_H 
   26 #include <tulip/Plugin.h> 
   27 #include <tulip/Algorithm.h> 
   31 static const std::string EXPORT_CATEGORY = 
"Export";
 
   47       assert(algoritmContext != NULL);
 
   48       graph = algoritmContext->
graph;
 
   50       dataSet = algoritmContext->
dataSet;
 
   54   virtual ~ExportModule() {}
 
   56   virtual std::string category()
 const {
 
   57     return EXPORT_CATEGORY;
 
   59   std::string icon()
 const {
 
   60     return ":/tulip/gui/icons/32/plugin_import_export.png";
 
   69   virtual std::string fileExtension() 
const = 0;
 
   80   PluginProgress *pluginProgress;