CalendarDemo
// Copyright (C) 2026 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause #include "calendardemo.h" #include <QtWidgets> #include <QApplication> int main(int argc, char *argv[]) { QApplication a(argc, argv); CalendarDemo w; w.show(); return a.exec(); }