#include "post.h" #include "comment.h" #include "tableset.h" Post::Post(QObject *parent) : Table(parent), m_comments(new TableSet(this)), m_id(0), m_title("") { } NUT_IMPLEMENT_CHILD_TABLE(Post, Comment, comments)