File indexing completed on 2023-05-30 10:45:27
0001 /* 0002 SPDX-FileCopyrightText: 2003 Peter Hedlund <peter.hedlund@kdemail.net> 0003 SPDX-License-Identifier: LGPL-2.0-only 0004 */ 0005 0006 #ifndef PREFEDITOR_H 0007 #define PREFEDITOR_H 0008 0009 #include "ui_prefeditorbase.h" 0010 0011 /** 0012 @author Peter Hedlund 0013 */ 0014 class PrefEditor : public QWidget, public Ui::PrefEditorBase 0015 { 0016 Q_OBJECT 0017 public: 0018 explicit PrefEditor(QWidget *parent); 0019 0020 }; 0021 0022 #endif