mxe/src/qtsparkle-test.cpp

18 lines
341 B
C++
Raw Permalink Normal View History

2017-01-28 00:08:21 +00:00
/*
* This file is part of MXE. See LICENSE.md for licensing information.
*/
#include <qtsparkle-qt5/Updater>
#include <QWidget>
#include <QUrl>
int main()
{
2017-10-10 06:22:37 +01:00
QWidget w;
qtsparkle::Updater* updater = new qtsparkle::Updater(
QUrl("https://www.example.com/sparkle.xml"), &w);
2017-10-10 06:22:37 +01:00
updater->SetVersion("1.0");
2017-01-28 00:08:21 +00:00
2017-10-10 06:22:37 +01:00
return 0;
2017-01-28 00:08:21 +00:00
}