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.
22 lines
305 B
22 lines
305 B
#ifndef LAYOUTWIDGET_H
|
|
#define LAYOUTWIDGET_H
|
|
|
|
#include <QTabWidget>
|
|
|
|
namespace Ui {
|
|
class LayoutWidget;
|
|
}
|
|
|
|
class LayoutWidget : public QTabWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit LayoutWidget(QWidget *parent = 0);
|
|
~LayoutWidget();
|
|
|
|
private:
|
|
Ui::LayoutWidget *ui;
|
|
};
|
|
|
|
#endif // LAYOUTWIDGET_H
|
|
|