#include <QtGui/qabstractitemview.h>
#ifndef QABSTRACTITEMVIEW_H
#ifndef QT_NO_ITEMVIEWS
class QAbstractItemView: public QAbstractScrollArea{
public: enum SelectionMode{
NoSelection = 0,
SingleSelection = 1,
MultiSelection = 2,
ExtendedSelection = 3,
ContiguousSelection = 4,
};
};
#endif // QT_NO_ITEMVIEWS
#endif // QABSTRACTITEMVIEW_H