You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
516 B
35 lines
516 B
3 years ago
|
/* DrewTechs
|
||
|
* Note Binder
|
||
|
* @Version 1.0
|
||
|
*/
|
||
|
|
||
|
#ifndef NOTEBOOK_H
|
||
|
#define NOTEBOOK_H
|
||
|
|
||
|
#include <QObject>
|
||
|
#include <QWidget>
|
||
|
#include <QList>
|
||
|
#include <QVector>
|
||
|
#include <QFile>
|
||
|
#include <QIODevice>
|
||
|
#include <QMessageBox>
|
||
|
#include <QTextStream>
|
||
|
#include "sectiongroup.h"
|
||
|
|
||
|
|
||
|
class Notebook
|
||
|
{
|
||
|
public:
|
||
|
Notebook();
|
||
|
void sortSectionGroupArray();
|
||
|
long id;
|
||
|
QString name;
|
||
|
QString color;
|
||
|
QString location;
|
||
|
QStringList files;
|
||
|
QVector<SectionGroup*> sectionGroupArray;
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // NOTEBOOK_H
|