mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-12 04:42:36 -03:00
19 lines
244 B
C
19 lines
244 B
C
|
#ifndef MAINOPTIONSPAGE_H
|
||
|
#define MAINOPTIONSPAGE_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
|
||
|
class MainOptionsPage : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit MainOptionsPage(QWidget *parent = 0);
|
||
|
|
||
|
signals:
|
||
|
|
||
|
public slots:
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // MAINOPTIONSPAGE_H
|