1 | /* |
---|---|
2 | This file is part of the KDE project |
3 | SPDX-FileCopyrightText: 2007 Matthias Kretz <kretz@kde.org> |
4 | |
5 | SPDX-License-Identifier: LGPL-2.0-only |
6 | */ |
7 | |
8 | #ifndef KPAGEMODEL_P_H |
9 | #define KPAGEMODEL_P_H |
10 | |
11 | #include "kpagemodel.h" |
12 | |
13 | class KPageModelPrivate |
14 | { |
15 | Q_DECLARE_PUBLIC(KPageModel) |
16 | public: |
17 | virtual ~KPageModelPrivate(); |
18 | |
19 | protected: |
20 | KPageModel *q_ptr; |
21 | }; |
22 | |
23 | #endif // KPAGEMODEL_P_H |
24 |