1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-04-17 11:26:26 +02:00

42 lines
603 B
C
Raw Normal View History

2016-12-10 22:39:53 +00:00
#ifndef ITEM_H
#define ITEM_H
#include <stable.h>
#include "models/basemodel.h"
2016-12-10 22:39:53 +00:00
namespace jop {
class Item : public BaseModel {
2016-12-10 22:39:53 +00:00
public:
Item();
// QString title() const;
// int createdTime() const;
// int updatedTime() const;
// bool synced() const;
// static QStringList dbFields();
2016-12-10 22:39:53 +00:00
// void setId(const QString &v);
// void setTitle(const QString& v);
// void setCreatedTime(int v);
// void setSynced(bool v);
2016-12-10 22:39:53 +00:00
// void fromSqlQuery(const QSqlQuery& query);
2016-12-10 22:39:53 +00:00
private:
// QString id_;
// QString title_;
// time_t createdTime_;
// time_t updatedTime_;
// bool synced_;
2016-12-27 21:25:07 +01:00
2016-12-10 22:39:53 +00:00
};
}
#endif // ITEM_H