File indexing completed on 2024-04-21 14:53:37

0001 /*
0002   SPDX-FileCopyrightText: 2001 Cornelius Schumacher <schumacher@kde.org>
0003   SPDX-License-Identifier: LGPL-2.0-or-later
0004 */
0005 
0006 #ifndef KCALCORE_CALFORMAT_P_H
0007 #define KCALCORE_CALFORMAT_P_H
0008 
0009 #include "exceptions.h"
0010 
0011 namespace KCalendarCore
0012 {
0013 class CalFormatPrivate
0014 {
0015 public:
0016     virtual ~CalFormatPrivate();
0017 
0018     static QString mApplication; // Name of application, for creating unique ID strings
0019     static QString mProductId; // PRODID string to write to calendar files
0020     QString mLoadedProductId; // PRODID string loaded from calendar file
0021     std::unique_ptr<Exception> mException;
0022 };
0023 }
0024 
0025 #endif