Nut/test/common/post.cpp

12 lines
230 B
C++

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