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