diff -r 6b5f25f057c2 -r 1d51612454b5 bookmarks/BookmarkResultsList.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bookmarks/BookmarkResultsList.h Fri Sep 17 12:10:47 2010 -0400 @@ -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_ */