13 #ifndef SST_CORE_MODEL_ELEMENT_PYTHON_H 
   14 #define SST_CORE_MODEL_ELEMENT_PYTHON_H 
   21 typedef void* (*genPythonModuleFunction)(void);
 
   30     std::string pylibrary;
 
   31     std::string sstlibrary;
 
   34     std::vector<std::pair<std::string,char*> > sub_modules;
 
   44     void addPrimaryModule(
char* file);
 
   45     void addSubModule(std::string name, 
char* file);
 
   53     genPythonModuleFunction func;
 
   62     void* load()
 override {
 
   69 #endif // SST_CORE_MODEL_ELEMENT_PYTHON_H 
Definition: element_python.h:51
Base class for python modules in element libraries. 
Definition: element_python.h:26