vnotefile.cpp 266 B

123456789
  1. #include "vnotefile.h"
  2. VNoteFile::VNoteFile(const QString &path, const QString &name,
  3. const QString &content, DocType docType, bool modifiable)
  4. : path(path), name(name), content(content), docType(docType),
  5. modifiable(modifiable)
  6. {
  7. }