added post
This commit is contained in:
parent
9cab3341b6
commit
5101a426c0
9 changed files with 139 additions and 33 deletions
20
post.cpp
Normal file
20
post.cpp
Normal 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()
|
||||
{
|
||||
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue