aboutsummaryrefslogtreecommitdiff
path: root/contact.h
blob: 4e6dfcc5525560735aa1971e5834f4f2cbc1248e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef CONTACT_H
#define CONTACT_H

#include "ui_contact.h"
#include <QListWidgetItem>
#include <QString>
#include <QWidget>

class Contact : public QListWidgetItem, public QWidget
{
public:
    Contact(const QString &own, const QString &other,
        QListWidget *list, QWidget *parent = nullptr);
    const QString own, other;

private:
    Ui_contact ui;
};

#endif