#include <QtGui/qpaintengine.h>
#ifndef QPAINTENGINE_H
class QPaintEngine{
   /* Some contents are skipped to improve readability */
   public: enum Type{
      X11 = 0,
      Windows = 1,
      QuickDraw = 2,
      CoreGraphics = 3,
      MacPrinter = 4,
      QWindowSystem = 5,
      PostScript = 6,
      OpenGL = 7,
      Picture = 8,
      SVG = 9,
      Raster = 10,
      User = 50,
      MaxUser = 100,
   };
   /* ... */
};
#endif // QPAINTENGINE_H