mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-19 06:41:47 -05:00
31 lines
501 B
C
31 lines
501 B
C
|
#ifndef INCLUDE_ADDPRESETDIALOG_H
|
||
|
#define INCLUDE_ADDPRESETDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
class AddPresetDialog;
|
||
|
}
|
||
|
|
||
|
class AddPresetDialog : public QDialog {
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit AddPresetDialog(const QStringList& groups, const QString& group, QWidget* parent = NULL);
|
||
|
~AddPresetDialog();
|
||
|
|
||
|
QString group() const;
|
||
|
QString description() const;
|
||
|
|
||
|
private:
|
||
|
enum Audio {
|
||
|
ATDefault,
|
||
|
ATInterface,
|
||
|
ATDevice
|
||
|
};
|
||
|
|
||
|
Ui::AddPresetDialog* ui;
|
||
|
};
|
||
|
|
||
|
#endif // INCLUDE_ADDPRESETDIALOG_H
|