forked from jeena/FeedTheMonkey
20 lines
244 B
C++
20 lines
244 B
C++
#include "post.h"
|
|
#include <QDebug>
|
|
|
|
Post::Post(QObject *parent) : QObject(parent),
|
|
mStarred(false)
|
|
{
|
|
|
|
}
|
|
|
|
Post::Post(QJsonDocument post, QObject *parent) : QObject(parent),
|
|
mStarred(false)
|
|
{
|
|
qDebug() << post;
|
|
}
|
|
|
|
Post::~Post()
|
|
{
|
|
|
|
}
|
|
|