1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00
qTox/src/core/toxpk.h

19 lines
335 B
C
Raw Normal View History

#ifndef TOXPK_H
#define TOXPK_H
#include "src/core/contactid.h"
#include <QByteArray>
#include <cstdint>
class ToxPk : public ContactId
{
public:
ToxPk();
ToxPk(const ToxPk& other);
explicit ToxPk(const QByteArray& rawId);
explicit ToxPk(const uint8_t* rawId);
int getSize() const override;
};
#endif // TOXPK_H