mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-05 13:59:52 +08:00
11 lines
216 B
C++
11 lines
216 B
C++
#include "vfilelocation.h"
|
|
|
|
VFileLocation::VFileLocation()
|
|
{
|
|
}
|
|
|
|
VFileLocation::VFileLocation(const QString &p_notebook, const QString &p_relativePath)
|
|
: m_notebook(p_notebook), m_relativePath(p_relativePath)
|
|
{
|
|
}
|