#include <QtGui/qmessagebox.h>
#ifndef QMESSAGEBOX_H
#ifndef QT_NO_MESSAGEBOX
class QMessageBox: public QDialog{
   /* Some contents are skipped to improve readability */
   public: static enum QMessageBox::StandardButton critical(class QWidget* parent, class QString const & title, class QString const & text, class QFlags < enum QMessageBox::StandardButton > buttons = QMessageBox::Ok, enum QMessageBox::StandardButton defaultButton = QMessageBox::NoButton);
   /* ... */
};
#endif // QT_NO_MESSAGEBOX
#endif // QMESSAGEBOX_H