VAPOR3 3.9.4
CheckForUpdate.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <functional>
5
6class QNetworkAccessManager;
7
8struct UpdateInfo {
9 std::string version;
10 std::string url;
11 bool error = false;
12
13 void OpenURL();
14};
15
18
19void CheckForUpdate(std::function<void(bool updateAvailable, UpdateInfo info)> callback);
void CheckForUpdate(std::function< void(bool updateAvailable, UpdateInfo info)> callback)
void OpenURL()
std::string url
std::string version
Definition: CheckForUpdate.h:9