added logging module and a sandbox project

This commit is contained in:
Sascha Kühl
2025-07-03 16:13:58 +02:00
parent c4a00f19fd
commit 20d6a77275
29 changed files with 2287 additions and 25 deletions
+15
View File
@@ -0,0 +1,15 @@
#include "matador/object/schema.hpp"
#include "author.hpp"
#include "book.hpp"
using namespace demo;
using namespace matador;
int main() {
object::schema tree;
tree.attach<author>("authors");
tree.attach<book>("books");
}