#include <QtGui/qitemselectionmodel.h>
#ifndef QITEMSELECTIONMODEL_H
#ifndef QT_NO_ITEMVIEWS
class QItemSelectionModel: public QObject{
public: enum SelectionFlag{
NoUpdate = 0,
Clear = 1,
Select = 2,
Deselect = 4,
Toggle = 8,
Current = 16,
Rows = 32,
Columns = 64,
SelectCurrent = 18,
ToggleCurrent = 24,
ClearAndSelect = 3,
};
};
#endif // QT_NO_ITEMVIEWS
#endif // QITEMSELECTIONMODEL_H