aboutsummaryrefslogtreecommitdiffstats
path: root/src/quicktemplates/qquickcalendar.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/quicktemplates/qquickcalendar.cpp')
-rw-r--r--src/quicktemplates/qquickcalendar.cpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/quicktemplates/qquickcalendar.cpp b/src/quicktemplates/qquickcalendar.cpp
new file mode 100644
index 0000000000..205bd3c38b
--- /dev/null
+++ b/src/quicktemplates/qquickcalendar.cpp
@@ -0,0 +1,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 QObject
+//! \instantiates 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"