#include <QtGui/qfont.h>
#ifndef QFONT_H
class QFont{
   /* Some contents are skipped to improve readability */
   public: enum StyleHint{
      Helvetica = 0,
      SansSerif = 0,
      Times = 1,
      Serif = 1,
      Courier = 2,
      TypeWriter = 2,
      OldEnglish = 3,
      Decorative = 3,
      System = 4,
      AnyStyle = 5,
   };
   /* ... */
};
#endif // QFONT_H