Isis Developer Reference
Plugin.h
Go to the documentation of this file.
1 #ifndef Plugin_h
2 #define Plugin_h
3 
8 /* SPDX-License-Identifier: CC0-1.0 */
9 
10 #include "Pvl.h"
11 
12 namespace Isis {
55  class Plugin : public Isis::Pvl {
56  public:
57  Plugin();
58 
60  virtual ~Plugin() {};
61 
62  QFunctionPointer GetPlugin(const QString &group);
63  };
64 };
65 
66 #endif
FileName.h
Isis::PvlObject::findGroup
PvlGroupIterator findGroup(const QString &name, PvlGroupIterator beg, PvlGroupIterator end)
Find a group with the specified name, within these indexes.
Definition: PvlObject.h:129
Isis::PvlObject::group
PvlGroup & group(const int index)
Return the group at the specified index.
Definition: PvlObject.cpp:452
Plugin.h
Isis::FileName
File name manipulation and expansion.
Definition: FileName.h:100
Isis::IException::Unknown
@ Unknown
A type of error that cannot be classified as any of the other error types.
Definition: IException.h:118
Isis::Pvl
Container for cube-like labels.
Definition: Pvl.h:119
Isis::Plugin::~Plugin
virtual ~Plugin()
Destroys the Plugin object.
Definition: Plugin.h:60
Isis::FileName::expanded
QString expanded() const
Returns a QString of the full file name including the file path, excluding the attributes.
Definition: FileName.cpp:196
Isis::PvlGroup
Contains multiple PvlContainers.
Definition: PvlGroup.h:41
Pvl.h
_FILEINFO_
#define _FILEINFO_
Macro for the filename and line number.
Definition: IException.h:24
Isis::Plugin::Plugin
Plugin()
Constructs a Plugin object.
Definition: Plugin.cpp:22
Isis::Plugin::GetPlugin
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:39
Isis::IException
Isis exception class.
Definition: IException.h:91
IException.h
std
Namespace for the standard library.
Isis
This is free and unencumbered software released into the public domain.
Definition: Apollo.h:16
Isis::Plugin
Loads plugins from a shared library.
Definition: Plugin.h:55