15 lines
268 B
C++
15 lines
268 B
C++
#include "formbudgetlist.h"
|
|
#include "ui_formbudgetlist.h"
|
|
|
|
FormBudgetList::FormBudgetList(FormBaseList *parent)
|
|
: FormBaseList(parent)
|
|
, ui(new Ui::FormBudgetList)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
FormBudgetList::~FormBudgetList()
|
|
{
|
|
delete ui;
|
|
}
|