16 lines
327 B
C++
16 lines
327 B
C++
|
#include "portstatswindow.h"
|
||
|
#include "portstatsmodel.h"
|
||
|
|
||
|
//PortStatsWindow::PortStatsWindow(QWidget *parent) : QDialog (parent)
|
||
|
PortStatsWindow::PortStatsWindow(PortGroupList *pgl, QWidget *parent)
|
||
|
{
|
||
|
setupUi(this);
|
||
|
|
||
|
tvPortStats->setModel(pgl->getPortStatsModel());
|
||
|
|
||
|
}
|
||
|
|
||
|
PortStatsWindow::~PortStatsWindow()
|
||
|
{
|
||
|
}
|