You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
calculate-utils-2.2-install.../src/pagecfdisk.h

29 lines
332 B

14 years ago
#pragma once
#include "installerpage.h"
class QTermWidget;
class PageCfdisk : public InstallerPage
{
Q_OBJECT
public:
explicit PageCfdisk(const QString& title, const QString& disk);
14 years ago
bool validate();
public slots:
void show();
//
signals:
void completed();
//
private:
const QString m_Disk;
14 years ago
QTermWidget* m_Term;
14 years ago
};