My Project
mainwindow.h
1 #ifndef MAINWINDOW_H
2 #define MAINWINDOW_H
3 
4 #include <QMainWindow>
5 #include <string>
6 
7 using namespace std;
8 
9 namespace Ui {
10  class MainWindow;
11 }
12 
13 class MainWindow : public QMainWindow
14 {
15  Q_OBJECT
16 
17 public:
20  explicit MainWindow(QWidget *parent = 0);
21 
25  ~MainWindow();
26 
27 
28 private slots:
29 
41  void on_EncodeButton_clicked();
42 
54  void on_DecodeButton_clicked();
55 
56 private:
57  Ui::MainWindow *ui;
58 };
59 
60 
61 
62 
63 #endif // MAINWINDOW_H
Definition: mainwindow.h:9
Definition: mainwindow.h:13