24 lines
384 B
C++
24 lines
384 B
C++
#ifndef FORMBUDGETLIST_H
|
|
#define FORMBUDGETLIST_H
|
|
|
|
#include <QWidget>
|
|
#include <gui/formbaselist.h>
|
|
|
|
namespace Ui {
|
|
class FormBudgetList;
|
|
}
|
|
|
|
class FormBudgetList : public FormBaseList
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit FormBudgetList(FormBaseList *parent = nullptr);
|
|
~FormBudgetList();
|
|
|
|
private:
|
|
Ui::FormBudgetList *ui;
|
|
};
|
|
|
|
#endif // FORMBUDGETLIST_H
|