mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-06 14:29:54 +08:00
14 lines
229 B
C++
14 lines
229 B
C++
#include "file.h"
|
|
|
|
using namespace vnotex;
|
|
|
|
const FileType &File::getContentType() const
|
|
{
|
|
return FileTypeHelper::getInst().getFileType(m_contentType);
|
|
}
|
|
|
|
void File::setContentType(int p_type)
|
|
{
|
|
m_contentType = p_type;
|
|
}
|