QXRD  0.11.16
qxrdtodolistitem.h
Go to the documentation of this file.
1 #ifndef QXRDTODOLISTITEM_H
2 #define QXRDTODOLISTITEM_H
3 
4 #include "qcepobject.h"
5 
7 {
8 public:
9  QxrdToDoListItem(int id, bool active, QString d1, QString d2, QString s);
10 
11  int identifier();
12  bool isActive();
13  QDateTime insertedDate();
14  QDateTime completedDate();
15  QString description();
16 
17 signals:
18 
19 public slots:
20 
21 private:
23  bool m_Active;
24  QDateTime m_InsertedDate;
25  QDateTime m_CompletedDate;
26  QString m_Description;
27 };
28 
29 #endif // QXRDTODOLISTITEM_H
QDateTime insertedDate()
QxrdToDoListItem(int id, bool active, QString d1, QString d2, QString s)
QDateTime m_InsertedDate
QDateTime m_CompletedDate
QDateTime completedDate()