diff -r b61e1b3b145f -r 8f58c9334c71 bookmarks/BookmarkResultsList.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bookmarks/BookmarkResultsList.h Mon Oct 04 00:29:21 2010 +0300 @@ -0,0 +1,27 @@ +/* + * BookmarkResultsList.h + * + * Created on: Aug 13, 2010 + * Author: mmoretti + */ + +#ifndef BOOKMARKRESULTSLIST_H_ +#define BOOKMARKRESULTSLIST_H_ + +#include + +template +class BookmarkResultsList : public QList +{ + /* +public: + inline QQueue() {} + inline ~QQueue() {} + inline void enqueue(const T &t) { QList::append(t); } + inline T dequeue() { return QList::takeFirst(); } + inline T &head() { return QList::first(); } + inline const T &head() const { return QList::first(); } +*/ +}; + +#endif /* BOOKMARKRESULTSLIST_H_ */