bookmarks/BookmarkResultsList.h
changeset 13 8f58c9334c71
--- /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 <QList>
+
+template <class T>
+class BookmarkResultsList : public QList<T>
+{
+  /*
+public:
+    inline QQueue() {}
+    inline ~QQueue() {}
+    inline void enqueue(const T &t) { QList<T>::append(t); }
+    inline T dequeue() { return QList<T>::takeFirst(); }
+    inline T &head() { return QList<T>::first(); }
+    inline const T &head() const { return QList<T>::first(); }
+*/
+};
+
+#endif /* BOOKMARKRESULTSLIST_H_ */