#include <QtGui/qabstractitemview.h>
#ifndef QABSTRACTITEMVIEW_H
#ifndef QT_NO_ITEMVIEWS
class QAbstractItemView: public QAbstractScrollArea{
   /* Some contents are skipped to improve readability */
#ifndef QT_NO_DRAGANDDROP
   protected: enum DropIndicatorPosition{
      /* ... */
      BelowItem = 2,
      /* ... */
   };
#endif
   /* ... */
};
#endif // QT_NO_ITEMVIEWS
#endif // QABSTRACTITEMVIEW_H