mxe/src/qtsparkle_qt4-test.cpp

19 lines
319 B
C++
Raw Normal View History

2016-03-21 20:27:34 +00:00
/*
* This file is part of MXE.
* See index.html for further information.
*/
#include <qtsparkle/Updater>
#include <QWidget>
#include <QUrl>
int main()
{
QWidget w;
qtsparkle::Updater* updater = new qtsparkle::Updater(
QUrl("http://www.example.com/sparkle.xml"), &w);
updater->SetVersion("1.0");
return 0;
}