Advertisement
Guest User

Untitled

a guest
Mar 27th, 2015
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. class MainWindow : public QMainWindow
  2. {
  3. Q_OBJECT
  4.  
  5. public:
  6. explicit MainWindow(QWidget *parent = 0);
  7. ~MainWindow();
  8.  
  9. private slots:
  10.  
  11. private:
  12. Ui::MainWindow *ui;
  13. QString fileName_;
  14.  
  15. QMap<QString, unsigned int> vars_; // this is the data I want to associate
  16. };
  17.  
  18. class Ui_MainWindow
  19. {
  20. public:
  21. QWidget *centralWidget;
  22. QTextEdit *ALU; // this is the control I want to associate with the data
  23. .
  24. .
  25. .
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement