#ifndef VNOTE_H #define VNOTE_H #include #include #include #include #include #include "vnotebook.h" class VNote : public QObject { Q_OBJECT public: VNote(); const QVector& getNotebooks(); static void decorateTemplate(); static QString templateHtml; void createNotebook(const QString &name, const QString &path); void removeNotebook(const QString &name); signals: void notebooksChanged(const QVector ¬ebooks); private: QVector notebooks; }; #endif // VNOTE_H