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