mirror of
https://github.com/FAUSheppy/speech-server-client-qt
synced 2025-12-06 00:41:35 +01:00
20 lines
274 B
C++
20 lines
274 B
C++
#ifndef ABOUT_H
|
|
#define ABOUT_H
|
|
|
|
#include <QMainWindow>
|
|
|
|
class About : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit About(QWidget *parent = nullptr);
|
|
~About();
|
|
|
|
private:
|
|
QString* getCurrentVersion();
|
|
QString *getServerVersion();
|
|
};
|
|
|
|
#endif // ABOUT_H
|