mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-01-01 03:37:49 -05:00
24 lines
437 B
C++
24 lines
437 B
C++
#ifndef OPENRGBSOFTWAREINFOPAGE_H
|
|
#define OPENRGBSOFTWAREINFOPAGE_H
|
|
|
|
#include <QFrame>
|
|
#include "ui_OpenRGBSoftwareInfoPage.h"
|
|
|
|
namespace Ui {
|
|
class OpenRGBSoftwareInfoPage;
|
|
}
|
|
|
|
class Ui::OpenRGBSoftwareInfoPage : public QFrame
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit OpenRGBSoftwareInfoPage(QWidget *parent = nullptr);
|
|
~OpenRGBSoftwareInfoPage();
|
|
|
|
private:
|
|
Ui::OpenRGBSoftwareInfoPageUi *ui;
|
|
};
|
|
|
|
#endif // OPENRGBSOFTWAREINFOPAGE_H
|