Move TasksFile into another file

This commit is contained in:
Vyn 2024-04-18 21:12:17 +02:00
parent 841c87752f
commit cd01c39ed7
6 changed files with 50 additions and 27 deletions

17
src/TasksFile.cpp Normal file
View file

@ -0,0 +1,17 @@
/*
* Mirai. Copyright (C) 2024 Vyn
* This file is licensed under version 3 of the GNU General Public License (GPL-3.0-only)
* The license can be found in the LICENSE file or at https://www.gnu.org/licenses/gpl-3.0.txt
*/
#include "TasksFile.h"
QString QMLTasksFile::getName()
{
return QString::fromStdString(tasksFile->getName());
}
QString QMLTasksFile::getPath()
{
return QString::fromStdString(tasksFile->getPath());
}