USGS

Isis 3.0 Object Programmers' Reference

Home

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  void *GetPlugin(const QString &group);
79  };
80 };
81 
82 #endif