treeland/examples/test_xdgport_wallpaper/main.cpp

15 lines
313 B
C++
Raw Permalink Normal View History

// Copyright (C) 2024 rewine <luhongxu@deepin.com>.
// SPDX-License-Identifier: Apache-2.0 OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#include "mainwindow.h"
2024-09-25 11:39:24 +08:00
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}