mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
23 lines
330 B
C++
23 lines
330 B
C++
#ifndef NOTEBOOK_H
|
|
#define NOTEBOOK_H
|
|
|
|
#include <QWidget>
|
|
#include <QList>
|
|
#include "notebookpage.h"
|
|
#include "notebooktab.h"
|
|
|
|
class Notebook : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
Notebook(QWidget *parent);
|
|
|
|
NotebookPage AddPage();
|
|
|
|
private:
|
|
QList<std::tuple<NotebookPage, NotebookTab>> pages;
|
|
};
|
|
|
|
#endif // NOTEBOOK_H
|