You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
278 B
C++
20 lines
278 B
C++
14 years ago
|
#ifndef PLAYPAGE_H
|
||
|
#define PLAYPAGE_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
|
||
|
class QComboBox;
|
||
|
class QStringListModel;
|
||
|
|
||
|
class PlayPage : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
PlayPage(QWidget *parent = 0);
|
||
|
|
||
|
QComboBox *mProfileComboBox;
|
||
|
QStringListModel *mProfileModel;
|
||
|
};
|
||
|
|
||
|
#endif
|