diff options
| author | daniel-Jones <daniel@danieljon.es> | 2016-07-21 19:10:18 +0930 | 
|---|---|---|
| committer | daniel-Jones <daniel@danieljon.es> | 2016-07-21 19:10:18 +0930 | 
| commit | b9224cb9de71995b9f89787d47b98f9bbb188d58 (patch) | |
| tree | 8d45602c26d6ffc959da8df57d05dbf00bd1e9d5 /user_select_dialog.h | |
| download | csgo_stats-b9224cb9de71995b9f89787d47b98f9bbb188d58.tar.gz csgo_stats-b9224cb9de71995b9f89787d47b98f9bbb188d58.zip | |
first commit, basic program currently
Diffstat (limited to 'user_select_dialog.h')
| -rw-r--r-- | user_select_dialog.h | 30 | 
1 files changed, 30 insertions, 0 deletions
| diff --git a/user_select_dialog.h b/user_select_dialog.h new file mode 100644 index 0000000..98b3503 --- /dev/null +++ b/user_select_dialog.h @@ -0,0 +1,30 @@ +#ifndef USER_SELECT_DIALOG_H +#define USER_SELECT_DIALOG_H + +#include <QMainWindow> +#include <QDebug> +#include "file_download.h" +#include "stats_display_window.h" + +namespace Ui { +class user_select_dialog; +} + +class user_select_dialog : public QMainWindow +{ +    Q_OBJECT + +public: +    explicit user_select_dialog(QWidget *parent = 0); +    ~user_select_dialog(); + +private slots: +    void on_select_account_button_clicked(); + +private: +    Ui::user_select_dialog *ui; +    file_download download; +    stats_display_window n_window; +}; + +#endif // USER_SELECT_DIALOG_H | 
