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