Skip to content
Snippets Groups Projects
Select Git revision
  • 315c45327269c3a5b55c9d52ae1449db75e21689
  • 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 413 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