#include <QtGui/qstyle.h>
#ifndef QSTYLE_H
class QStyle: public QObject{
   /* Some contents are skipped to improve readability */
   public: virtual int styleHint(enum QStyle::StyleHint stylehint, struct QStyleOption const * opt = 0, struct QWidget const * widget = 0, struct QStyleHintReturn* returnData = 0) const = 0;
   /* ... */
};
#endif // QSTYLE_H