query/demo/sandbox.cpp

15 lines
236 B
C++

#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");
}