| 1 | // Copyright (C) 2021 The Qt Company Ltd. |
| 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
| 3 | |
| 4 | #include "qquickcalendar_p.h" |
| 5 | |
| 6 | QT_BEGIN_NAMESPACE |
| 7 | |
| 8 | /*! |
| 9 | \qmltype Calendar |
| 10 | \inherits QtObject |
| 11 | //! \nativetype QQuickCalendar |
| 12 | \inqmlmodule QtQuick.Controls |
| 13 | \brief A calendar namespace. |
| 14 | |
| 15 | The Calendar singleton provides miscellaneous calendar-related |
| 16 | utilities. |
| 17 | |
| 18 | \include zero-based-months.qdocinc |
| 19 | |
| 20 | \sa MonthGrid, DayOfWeekRow, WeekNumberColumn |
| 21 | */ |
| 22 | |
| 23 | QQuickCalendar::QQuickCalendar(QObject *parent) : QObject(parent) |
| 24 | { |
| 25 | } |
| 26 | |
| 27 | QT_END_NAMESPACE |
| 28 | |
| 29 | #include "moc_qquickcalendar_p.cpp" |
| 30 | |