Add support for rank list plus minor changes here and there
[agianapa.git] / qt / leleja / leleja.h
blobaad8899b0f375c474ba83a125b1a98f2b4adfb69
1 #ifndef LELEJA_H
2 #define LELEJA_H
4 #include <QDialog>
5 #include <QList>
7 #include "ui_leleja.h"
8 #include "myrank.h"
9 #include "myreportdialog.h"
11 #define DEBUG
13 class Leleja : public QDialog, public Ui::Leleja
15 Q_OBJECT
17 public:
18 Leleja(QWidget *parent = 0);
19 ~Leleja();
21 private slots:
22 void on_calcButton_clicked();
24 private:
25 MyReportDialog *myreportdialog;
27 // Rank list (it's populated inside the leleja's constructor)
28 QList<MyRank> myRankList;
31 #endif // LELEJA_H