mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
18 lines
247 B
C++
18 lines
247 B
C++
#ifndef NOTEBOOKPAGE_H
|
|
#define NOTEBOOKPAGE_H
|
|
|
|
#include "QWidget"
|
|
|
|
class NotebookTab;
|
|
|
|
class NotebookPage : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
NotebookPage(QWidget *parent, NotebookTab *tab);
|
|
NotebookTab* tab;
|
|
};
|
|
|
|
#endif // NOTEBOOKPAGE_H
|