Isis 3 Programmer Reference
Plugin.h
Go to the documentation of this file.
1 #ifndef Plugin_h
2 #define Plugin_h
3 
26 #include "Pvl.h"
27 
28 namespace Isis {
71  class Plugin : public Isis::Pvl {
72  public:
73  Plugin();
74 
76  virtual ~Plugin() {};
77 
78  QFunctionPointer GetPlugin(const QString &group);
79  };
80 };
81 
82 #endif
Loads plugins from a shared library.
Definition: Plugin.h:71
virtual ~Plugin()
Destroys the Plugin object.
Definition: Plugin.h:76
Container for cube-like labels.
Definition: Pvl.h:135
PvlGroup & group(const int index)
Return the group at the specified index.
Definition: PvlObject.cpp:423
Plugin()
Constructs a Plugin object.
Definition: Plugin.cpp:38
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
QFunctionPointer GetPlugin(const QString &group)
This method returns a void pointer to a C function (i.e., the plugin) It does this by looking in itse...
Definition: Plugin.cpp:55