keep going on refactoring vcard

This commit is contained in:
Blue 2023-02-02 21:39:38 +03:00
parent 4af16b75bf
commit edf1ee60cd
Signed by: blue
GPG key ID: 9B203B252A63EE38
13 changed files with 483 additions and 55 deletions

View file

@ -19,6 +19,7 @@
#include "vcard.h"
#include "keyinfo.h"
#include "enums.h"
#include <list>
@ -33,10 +34,11 @@ namespace Shared {
class Info {
public:
Info();
Info(const QString& jid, bool editable = false);
Info(const QString& jid, EntryType = EntryType::contact, bool editable = false);
Info(const Info& other);
~Info();
EntryType type;
QString jid;
bool editable;
VCard vcard;