8 lines
118 B
C++
8 lines
118 B
C++
|
|
#include "user.h"
|
||
|
|
|
||
|
|
User::User(QObject *tableSet) : Table(tableSet),
|
||
|
|
m_comments(new TableSet<Comment*>(this))
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|