File indexing completed on 2024-05-12 16:43:57

0001 /*
0002     SPDX-FileCopyrightText: 2006-2018 Thomas Baumgart <tbaumgart@kde.org>
0003     SPDX-FileCopyrightText: 2017-2018 Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef FANCYDATEGROUPMARKER_P_H
0008 #define FANCYDATEGROUPMARKER_P_H
0009 
0010 // ----------------------------------------------------------------------------
0011 // QT Includes
0012 
0013 #include <QDate>
0014 
0015 // ----------------------------------------------------------------------------
0016 // KDE Includes
0017 
0018 // ----------------------------------------------------------------------------
0019 // Project Includes
0020 
0021 #include "groupmarker_p.h"
0022 
0023 namespace KMyMoneyRegister
0024 {
0025 class FancyDateGroupMarkerPrivate : public GroupMarkerPrivate
0026 {
0027 public:
0028     QDate m_date;
0029 };
0030 }
0031 
0032 #endif