Guest User

Untitled

a guest
Jan 19th, 2014
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.55 KB | None | 0 0
  1. #ifndef MAINWINDOW_H
  2. #define MAINWINDOW_H
  3.  
  4. #include <QMainWindow>
  5.  
  6.  
  7. #include <iostream>
  8. #include <stdio.h>
  9. #include <QStringList>
  10. #include <QListWidgetItem>
  11.  
  12.  
  13. using namespace std;
  14.  
  15. namespace Ui {
  16. class MainWindow;
  17. }
  18.  
  19. class MainWindow : public QMainWindow
  20. {
  21.     Q_OBJECT
  22.    
  23. public:
  24.     explicit MainWindow(QWidget *parent = 0);
  25.     ~MainWindow();
  26.    
  27.     int testCmdAlternative();
  28.  
  29. private slots:
  30.  
  31.     void on_pathNameListWidget_currentRowChanged(int currentRow);
  32.  
  33.  
  34. private:
  35.     Ui::MainWindow *ui;
  36. };
  37.  
  38. #endif // MAINWINDOW_H
Advertisement
Add Comment
Please, Sign In to add comment