vnotefile.h 366 B

1234567891011121314151617181920
  1. #ifndef VNOTEFILE_H
  2. #define VNOTEFILE_H
  3. #include <QString>
  4. #include "vconstants.h"
  5. class VNoteFile
  6. {
  7. public:
  8. VNoteFile(const QString &path, const QString &name, const QString &content,
  9. DocType docType, bool modifiable);
  10. QString path;
  11. QString name;
  12. QString content;
  13. DocType docType;
  14. bool modifiable;
  15. };
  16. #endif // VNOTEFILE_H