migrate to c++, all layers done except for data access

This commit is contained in:
odweta
2026-08-13 21:32:30 +02:00
parent 4389466d40
commit 3b8c6f00f5
25 changed files with 228 additions and 242 deletions
+15
View File
@@ -0,0 +1,15 @@
#ifndef HANDLER_H
#define HANDLER_H
#include <string>
#include "dao.h"
using namespace std;
int handle_create(Dao *dao, string title, string description);
int handle_list(Dao *dao);
int handle_list(Dao *dao, string status);
int handle_detail(Dao *dao, unsigned long id);
#endif // HANDLER_H