Files
SilentDragonXLite/src/contactmodel.h
2020-05-27 21:42:39 +02:00

21 lines
288 B
C++

// Copyright 2019-2020 The Hush developers
// GPLv3
#ifndef CONTACTMODEL_H
#define CONTACTMODEL_H
#include "Model/ContactItem.h"
#include <QListWidget>
#include "mainwindow.h"
class ContactModel
{
public:
ContactModel() {}
void renderContactList(QListView* view);
};
#endif