vnotebook.h 370 B

12345678910111213141516171819202122
  1. #ifndef VNOTEBOOK_H
  2. #define VNOTEBOOK_H
  3. #include <QString>
  4. class VNotebook
  5. {
  6. public:
  7. VNotebook();
  8. VNotebook(const QString &name, const QString &path);
  9. QString getName() const;
  10. QString getPath() const;
  11. void setName(const QString &name);
  12. void setPath(const QString &path);
  13. private:
  14. QString name;
  15. QString path;
  16. };
  17. #endif // VNOTEBOOK_H