23 lines
360 B
C++
23 lines
360 B
C++
#ifndef STORAGESETTINGSPAGE_H
|
|
#define STORAGESETTINGSPAGE_H
|
|
|
|
#include <QWidget>
|
|
|
|
namespace Ui {
|
|
class CStorageSettingsPage;
|
|
}
|
|
|
|
class CStorageSettingsPage : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit CStorageSettingsPage(QWidget *parent = 0);
|
|
~CStorageSettingsPage();
|
|
|
|
private:
|
|
Ui::CStorageSettingsPage *ui;
|
|
};
|
|
|
|
#endif // STORAGESETTINGSPAGE_H
|