Skip to content
Snippets Groups Projects
jdenticoninterface.h 389 B
Newer Older
#ifndef JDENTICONINTERFACE_H
#define JDENTICONINTERFACE_H

#include <QString>

class JdenticonInterface
{
public:
    virtual ~JdenticonInterface() {}
    virtual QString generate(const QString &message, uint16_t size) = 0;
};

#define JdenticonInterface_iid "redsky17.Qt.JdenticonInterface"

Q_DECLARE_INTERFACE(JdenticonInterface, JdenticonInterface_iid)

#endif // JDENTICONINTERFACE_H