Skip to content
Snippets Groups Projects
Select Git revision
  • d288cbf5e68b5811be6a15ec81ea86d574e0016d
  • master default protected
  • order_matters
  • code-cleanup
  • fixes
  • v0.3.1
  • v0.3.0
  • v0.2.1
  • v0.2.0
  • v0.1.0
10 results

jdenticonplugin.h

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    jdenticonplugin.h 407 B
    #ifndef JDENTICONPLUGIN_H
    #define JDENTICONPLUGIN_H
    
    #include <QObject>
    #include <QtPlugin>
    #include "jdenticoninterface.h"
    
    class JdenticonPlugin : public QObject, JdenticonInterface
    {
        Q_OBJECT
        Q_PLUGIN_METADATA(IID "redsky17.Qt.JdenticonInterface")
        Q_INTERFACES(JdenticonInterface)
    
    public:
        QString generate(const QString &message, uint16_t size) override;
    };
    
    #endif // JDENTICONPLUGIN_H