Select Git revision
jdenticonplugin.h
Joe Donofry authored
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