#include <QtGui/qdatetimeedit.h>
#ifndef QDATETIMEEDIT_H
#ifndef QT_NO_DATETIMEEDIT
class QDateTimeEdit: public QAbstractSpinBox{
   /* Some contents are skipped to improve readability */
   public: enum Section{
      NoSection = 0,
      AmPmSection = 1,
      MSecSection = 2,
      SecondSection = 4,
      MinuteSection = 8,
      HourSection = 16,
      DaySection = 256,
      MonthSection = 512,
      YearSection = 1024,
      TimeSections_Mask = 31,
      DateSections_Mask = 1792,
   };
   /* ... */
};
#endif // QT_NO_DATETIMEEDIT
#endif // QDATETIMEEDIT_H