Warning, file /libraries/kopeninghours/src/lib/easter_p.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 /* 0002 SPDX-FileCopyrightText: 2020 Volker Krause <vkrause@kde.org> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #ifndef KOPENINGHOURS_EASTER_P_H 0008 #define KOPENINGHOURS_EASTER_P_H 0009 0010 class QDate; 0011 0012 namespace KOpeningHours { 0013 0014 /** Basic easter holiday in Gregorian calendar computation. 0015 * This should be provided by KHolidays, but is tricky to expose there due to its 0016 * internal outdated QCalendarSystem copy. 0017 */ 0018 namespace Easter 0019 { 0020 QDate easterDate(int year); 0021 } 0022 0023 } 0024 0025 #endif // KOPENINGHOURS_EASTER_P_H