School Commit Init

This commit is contained in:
2024-08-31 12:07:21 +03:00
commit 0b130ee18c
2801 changed files with 4720552 additions and 0 deletions
@@ -0,0 +1,45 @@
#include "domain.h"
Task::Task()
{
this->description = "";
this->duration = 0;
this->date = "";
}
Task::Task(std::string description, int duration, std::string date)
{
this->description = description;
this->duration = duration;
this->date = date;
}
std::string Task::getDescription()
{
return this->description;
}
int Task::getDuration()
{
return this->duration;
}
std::string Task::getDate()
{
return this->date;
}
void Task::setDescription(std::string description)
{
this->description = description;
}
void Task::setDuration(int duration)
{
this->duration = duration;
}
void Task::setDate(std::string date)
{
this->date = date;
}