Typica is a free program for professional coffee roasters. https://typica.us
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

licensewindow.h 364B

123456789101112131415161718192021222324
  1. /*211:*/
  2. #line 13 "./licensewindow.w"
  3. #include <QMainWindow>
  4. #include <QListWidgetItem>
  5. #include <QWebView>
  6. #ifndef TypicaLicenseHeader
  7. #define TypicaLicenseHeader
  8. class LicenseWindow:public QMainWindow
  9. {
  10. Q_OBJECT
  11. public:
  12. LicenseWindow();
  13. private slots:
  14. void setWebView(QListWidgetItem*current,QListWidgetItem*);
  15. private:
  16. QWebView*view;
  17. };
  18. #endif
  19. /*:211*/