Nut/test/common/post.cpp

10 lines
178 B
C++
Raw Normal View History

2016-05-12 14:08:58 +08:00
#include "comment.h"
#include "tableset.h"
#include "post.h"
Post::Post(QObject *parent) : Table(parent),
m_comments(new TableSet<Comment>(this)), m_id(0), m_title("")
{
}