Add 'Time' and 'Tags' as proper task's properties, also add raw format handling

This commit is contained in:
Vyn 2024-04-11 11:42:13 +02:00
parent 3e7d8b4b70
commit bae67e6851
15 changed files with 142 additions and 49 deletions

View file

@ -7,14 +7,12 @@
#ifndef MIRAI_USING_H
#define MIRAI_USING_H
#include "TaskItem.h"
#include <memory>
#include <string>
#include <vector>
namespace mirai {
using Tags = std::vector<std::string>;
using TasksPtrs = std::vector<std::unique_ptr<TaskItem>>;
}
#endif