Nut/test/common/user.cpp

10 lines
140 B
C++
Raw Normal View History

2018-01-09 00:59:16 +08:00
#include "user.h"
2018-01-09 01:07:26 +08:00
#include "comment.h"
2018-01-09 00:59:16 +08:00
User::User(QObject *tableSet) : Table(tableSet),
m_comments(new TableSet<Comment*>(this))
{
}