added post

This commit is contained in:
Jeena 2015-01-11 12:45:06 +01:00
parent 9cab3341b6
commit 5101a426c0
9 changed files with 139 additions and 33 deletions

20
post.cpp Normal file
View file

@ -0,0 +1,20 @@
#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()
{
}