vnote/src/vnotebook.cpp
Le Tan 5fa07864a1 move source stuff into src subdir
Make it convenient to add third-party libraries.

Signed-off-by: Le Tan <tamlokveer@gmail.com>
2016-10-22 14:11:33 +08:00

32 lines
421 B
C++

#include "vnotebook.h"
VNotebook::VNotebook()
{
}
VNotebook::VNotebook(const QString &name, const QString &path)
: name(name), path(path)
{
}
QString VNotebook::getName() const
{
return this->name;
}
QString VNotebook::getPath() const
{
return this->path;
}
void VNotebook::setName(const QString &name)
{
this->name = name;
}
void VNotebook::setPath(const QString &path)
{
this->path = path;
}