first commit

This commit is contained in:
2026-03-14 05:27:54 +01:00
commit 523a4085cc
14 changed files with 991 additions and 0 deletions

34
list.cpp Normal file
View File

@@ -0,0 +1,34 @@
#include "list.h"
List::List(QUuid uuid, QString name)
{
this->uuid = uuid;
this->name = name;
}
List::List(QString name)
{
this->uuid = QUuid::createUuid();
this->name = name;
}
QUuid List::getUUID()
{
return this->uuid;
}
QString List::getName()
{
return this->name;
}
void List::setName(QString value)
{
this->name = value;
}
List List::duplicate()
{
List l = List(this->getName() + " (copy)");
return l;
}