mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-05 13:59:52 +08:00
10 lines
290 B
C++
10 lines
290 B
C++
#include "vnotefile.h"
|
|
|
|
VNoteFile::VNoteFile(const QString &basePath, const QString &fileName,
|
|
const QString &content, DocType docType, bool modifiable)
|
|
: basePath(basePath), fileName(fileName),
|
|
content(content), docType(docType), modifiable(modifiable)
|
|
{
|
|
|
|
}
|