vnote/vnotebook.h
Le Tan d8c5114c1b read/write the info about notebooks
Use QSettings to store notebooks info in INI format.

Signed-off-by: Le Tan <tamlokveer@gmail.com>
2016-10-02 13:38:05 +08:00

23 lines
370 B
C++

#ifndef VNOTEBOOK_H
#define VNOTEBOOK_H
#include <QString>
class VNotebook
{
public:
VNotebook();
VNotebook(const QString &name, const QString &path);
QString getName() const;
QString getPath() const;
void setName(const QString &name);
void setPath(const QString &path);
private:
QString name;
QString path;
};
#endif // VNOTEBOOK_H