summaryrefslogtreecommitdiffstats
path: root/src/gui/doc/snippets/clipboard/main.cpp
blob: 9d68f539d15212b6f8784323277a9fccd7392d07 (plain)
123456789101112131415
// Copyright (C) 2016 The Qt Company Ltd.// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause#include <QApplication>#include"clipwindow.h"intmain(int argc,char*argv[]){ QApplication app(argc, argv); ClipWindow *window =new ClipWindow; window->resize(640,480); window->show();return app.exec();}
close