Skip to content
Snippets Groups Projects
jdenticonplugin.h 410 B
Newer Older
#ifndef JDENTICONPLUGIN_H
#define JDENTICONPLUGIN_H

#include <QObject>
#include <QtPlugin>
#include "jdenticoninterface.h"

class JdenticonPlugin
  : public QObject
  , JdenticonInterface
Joe Donofry's avatar
Joe Donofry committed
    Q_PLUGIN_METADATA(IID "im.nheko.JdenticonInterface")
    Q_INTERFACES(JdenticonInterface)

public:
    QString generate(const QString &message, uint16_t size) override;
};

#endif // JDENTICONPLUGIN_H