mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-21 18:50:47 +03:00
17 lines
386 B
C++
17 lines
386 B
C++
#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 "im.nheko.JdenticonInterface"
|
|
|
|
Q_DECLARE_INTERFACE(JdenticonInterface, JdenticonInterface_iid)
|
|
|
|
#endif // JDENTICONINTERFACE_H
|