Nut/test/common/weblogdatabase.cpp

10 lines
213 B
C++
Raw Normal View History

2016-05-12 14:08:58 +08:00
#include <QDebug>
#include "post.h"
#include "comment.h"
#include "weblogdatabase.h"
WeblogDatabase::WeblogDatabase() : Database(), m_posts(new TableSet<Post>(this)), m_comments(new TableSet<Comment>(this))
{
}