bookmarks/BookmarkResultsList.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Mon, 04 Oct 2010 00:29:21 +0300
changeset 13 8f58c9334c71
permissions -rw-r--r--
Revision: 201037 Kit: 201039

/*
 * 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_ */