blob: 0819cb33f5e885b74ff7d2f1252bf0c4170c4358 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef PARTITIONPAGE_HH
#define PARTITIONPAGE_HH
#include "horizonwizardpage.hh"
#ifndef NOT_NATIVE
# include <QPushButton>
#endif
class PartitionPage : public HorizonWizardPage
{
public:
PartitionPage(QWidget *parent = nullptr);
int nextId() const;
private:
#ifndef NOT_NATIVE
QPushButton *openEditor;
#endif
};
#endif // SOFTWAREPAGE_HH
|