#include "post.h" #include Post::Post(QObject *parent) : QObject(parent), mStarred(false) { } Post::Post(QJsonDocument post, QObject *parent) : QObject(parent), mStarred(false) { qDebug() << post; } Post::~Post() { }