ctkHostAppExampleWidget.h 464 B

1234567891011121314151617181920212223242526
  1. #ifndef CTKHOSTAPPEXAMPLEWIDGET_H
  2. #define CTKHOSTAPPEXAMPLEWIDGET_H
  3. #include <QDockWidget>
  4. namespace Ui {
  5. class ctkHostAppExampleWidget;
  6. }
  7. class ctkHostAppExampleWidget : public QDockWidget
  8. {
  9. Q_OBJECT
  10. public:
  11. explicit ctkHostAppExampleWidget(QWidget *parent = 0);
  12. ~ctkHostAppExampleWidget();
  13. public slots:
  14. void startButtonClicked();
  15. void stopButtonClicked();
  16. private:
  17. Ui::ctkHostAppExampleWidget *ui;
  18. };
  19. #endif // CTKHOSTWIDGET_H