added logging module and a sandbox project
This commit is contained in:
@@ -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");
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user