20 lines
420 B
C++
20 lines
420 B
C++
#ifndef INSTALL_JAVA_H
|
|
#define INSTALL_JAVA_H
|
|
|
|
#include <QString>
|
|
#include <functional>
|
|
#include <QStandardPaths>
|
|
#include <QProcess>
|
|
#include <QNetworkAccessManager>
|
|
#include <QNetworkReply>
|
|
#include <QEventLoop>
|
|
#include <QFileInfo>
|
|
#include <QDir>
|
|
#include <QFile>
|
|
#include <QDebug>
|
|
|
|
bool installJava(std::function<void(QString, unsigned int, unsigned int)> logCallback);
|
|
bool checkJava ();
|
|
|
|
#endif // INSTALL_JAVA_H
|