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