File indexing completed on 2024-04-28 03:59:09

0001 /*
0002     This file is part of the KDE project
0003     SPDX-FileCopyrightText: 2007 Matthias Kretz <kretz@kde.org>
0004 
0005     SPDX-License-Identifier: LGPL-2.0-only
0006 */
0007 
0008 #ifndef KPAGEMODEL_P_H
0009 #define KPAGEMODEL_P_H
0010 
0011 #include "kpagemodel.h"
0012 
0013 class KPageModelPrivate
0014 {
0015     Q_DECLARE_PUBLIC(KPageModel)
0016 public:
0017     virtual ~KPageModelPrivate();
0018 
0019 protected:
0020     KPageModel *q_ptr;
0021 };
0022 
0023 #endif // KPAGEMODEL_P_H