mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-31 11:17:52 -05:00
28 lines
501 B
C++
28 lines
501 B
C++
#ifndef OPENRGBPROFILESAVEDIALOG_H
|
|
#define OPENRGBPROFILESAVEDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include "ui_OpenRGBProfileSaveDialog.h"
|
|
#include "OpenRGBDialog2.h"
|
|
|
|
namespace Ui
|
|
{
|
|
class OpenRGBProfileSaveDialog;
|
|
}
|
|
|
|
class Ui::OpenRGBProfileSaveDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit OpenRGBProfileSaveDialog(QWidget *parent = nullptr);
|
|
~OpenRGBProfileSaveDialog();
|
|
|
|
std::string show();
|
|
|
|
private:
|
|
Ui::OpenRGBProfileSaveDialogUi *ui;
|
|
};
|
|
|
|
#endif // OPENRGBPROFILESAVEDIALOG_H
|