1// This is the SIP specification of the QPyDesignerPropertySheetExtension
2// class.
3//
4// Copyright (c) 2021 Riverbank Computing Limited <info@riverbankcomputing.com>
5//
6// This file is part of PyQt5.
7//
8// This file may be used under the terms of the GNU General Public License
9// version 3.0 as published by the Free Software Foundation and appearing in
10// the file LICENSE included in the packaging of this file.  Please review the
11// following information to ensure the GNU General Public License version 3.0
12// requirements will be met: http://www.gnu.org/copyleft/gpl.html.
13//
14// If you do not wish to use this file under the terms of the GPL version 3.0
15// then you may purchase a commercial license.  For more information contact
16// info@riverbankcomputing.com.
17//
18// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
19// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
20
21
22class QPyDesignerPropertySheetExtension : QObject, QDesignerPropertySheetExtension
23{
24%TypeHeaderCode
25#include <qpydesignerpropertysheetextension.h>
26%End
27
28public:
29    QPyDesignerPropertySheetExtension(QObject *parent /TransferThis/);
30
31private:
32    QPyDesignerPropertySheetExtension(const QPyDesignerPropertySheetExtension &);
33};
34