Nut/test/common/post.cpp

10 lines
179 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),
2018-01-09 00:59:16 +08:00
m_comments(new TableSet<Comment*>(this)), m_id(0), m_title("")
2016-05-12 14:08:58 +08:00
{
}