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.

abouttypica.h 367B

12345678910111213141516171819202122232425
  1. /*227:*/
  2. #line 12 "./abouttypica.w"
  3. #include <QMainWindow>
  4. #include <QWebView>
  5. #include <QFile>
  6. #include <QtDebug>
  7. #include <QMessageBox>
  8. #include <QDesktopServices>
  9. #ifndef AboutTypicaHeader
  10. #define AboutTypicaHeader
  11. class AboutTypica:public QMainWindow
  12. {
  13. Q_OBJECT
  14. public:
  15. AboutTypica();
  16. public slots:
  17. void linkClicked(const QUrl&url);
  18. };
  19. #endif
  20. /*:227*/