pgLab/pglab/NotificationListWidget.cpp
eelke 7f09d5fe07 Made a start with the notification system. However need to figure out
how i want to handle multithreading and screen updates.
2019-08-14 06:54:50 +02:00

9 lines
159 B
C++

#include "NotificationListWidget.h"
#include <QListView>
NotificationListWidget::NotificationListWidget()
: m_notificationList(new QListView(this))
{
}