Qt Cryptographic Architecture
|
#include <QtCrypto>
Public Member Functions | |
virtual QCA::Provider * | createProvider ()=0 |
virtual | ~QCAPlugin () |
Provider plugin base class.
QCA loads cryptographic provider plugins with QPluginLoader. The QObject obtained when loading the plugin must implement the QCAPlugin interface. This is done by inheriting QCAPlugin, and including Q_INTERFACES(QCAPlugin) in your class declaration.
For example:
There is only one function to reimplement, called createProvider(). This function should return a newly allocated Provider instance.
|
inlinevirtual |
Destructs the object.
|
pure virtual |
Returns a newly allocated Provider instance.