#include #include "user.h" #include "post.h" #include "comment.h" #include "user.h" #include "score.h" #include "weblogdatabase.h" WeblogDatabase::WeblogDatabase() : Database(), m_postTable(new TableSet(this)), m_commentTable(new TableSet(this)), m_userTable(new TableSet(this)), m_scoreTable(new TableSet(this)) { }