#include <QtGui/qprinter.h>
#ifndef QPRINTER_H
#ifndef QT_NO_PRINTER
class QPrinter: public QPaintDevice{
   /* Some contents are skipped to improve readability */
   public: enum PageSize{
      A4 = 0,
      B5 = 1,
      Letter = 2,
      Legal = 3,
      Executive = 4,
      A0 = 5,
      A1 = 6,
      A2 = 7,
      A3 = 8,
      A5 = 9,
      A6 = 10,
      A7 = 11,
      A8 = 12,
      A9 = 13,
      B0 = 14,
      B1 = 15,
      B10 = 16,
      B2 = 17,
      B3 = 18,
      B4 = 19,
      B6 = 20,
      B7 = 21,
      B8 = 22,
      B9 = 23,
      C5E = 24,
      Comm10E = 25,
      DLE = 26,
      Folio = 27,
      Ledger = 28,
      Tabloid = 29,
      Custom = 30,
      NPageSize = 30,
   };
   /* ... */
};
#endif // QT_NO_PRINTER
#endif // QPRINTER_H