2016-12-30 00:09:20 +08:00
|
|
|
#ifndef TOXPK_H
|
|
|
|
#define TOXPK_H
|
|
|
|
|
2019-04-12 04:38:37 +08:00
|
|
|
#include "src/core/contactid.h"
|
2016-12-30 00:09:20 +08:00
|
|
|
#include <QByteArray>
|
2017-02-26 19:52:45 +08:00
|
|
|
#include <cstdint>
|
2016-12-30 00:09:20 +08:00
|
|
|
|
2019-04-12 04:38:37 +08:00
|
|
|
class ToxPk : public ContactId
|
2016-12-30 00:09:20 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
ToxPk();
|
|
|
|
ToxPk(const ToxPk& other);
|
|
|
|
explicit ToxPk(const QByteArray& rawId);
|
|
|
|
explicit ToxPk(const uint8_t* rawId);
|
2019-04-12 04:38:37 +08:00
|
|
|
int getSize() const override;
|
2016-12-30 00:09:20 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // TOXPK_H
|