mysocials-core 1.0

src/utils/qrefreshlist.h

00001 #ifndef QREFRESHLIST_H
00002 #define QREFRESHLIST_H
00003 
00004 #include <QObject>
00005 #include <QList>
00006 #include <QDate>
00007 
00011 template <class T> class QRefreshList : public QList<T>
00012 {
00013 private:
00014     QDateTime _timeCreate;
00015 
00016 public:
00020     QRefreshList() {}
00021 
00025     ~QRefreshList() {}
00026 
00032     QDateTime timeCreate() const {return this->_timeCreate;}
00033 
00039     void setTimeCreate(const QDateTime& val) {this->_timeCreate = val;}
00040 
00041 signals:
00042 
00043 public slots:
00044 
00045 };
00046 
00047 #endif // QREFRESHLIST_H