File indexing completed on 2023-05-30 10:45:27

0001 /*
0002     SPDX-FileCopyrightText: 2008 Peter Hedlund <peter.hedlund@kdemail.net>
0003     SPDX-License-Identifier: LGPL-2.0-only
0004 */
0005 
0006 #ifndef PREFGENERAL_H
0007 #define PREFGENERAL_H
0008 
0009 #include "ui_prefgeneralbase.h"
0010 
0011 /**
0012 @author Peter Hedlund
0013 */
0014 class PrefGeneral : public QWidget, public Ui::PrefGeneralBase
0015 {
0016 Q_OBJECT
0017 public:
0018   explicit PrefGeneral(QWidget *parent);
0019 };
0020 
0021 #endif