File indexing completed on 2024-04-14 03:49:13

0001 /*
0002     view options for Parley
0003     SPDX-FileCopyrightText: 2005, 2007 Peter Hedlund <peter.hedlund@kdemail.net>
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef VIEWOPTIONS_H
0008 #define VIEWOPTIONS_H
0009 
0010 #include "ui_viewoptionsbase.h"
0011 
0012 class ViewOptions : public QWidget, public Ui::ViewOptionsBase
0013 {
0014     Q_OBJECT
0015 public:
0016     explicit ViewOptions(QWidget *parent = nullptr);
0017 };
0018 
0019 #endif