#include <QtCore/qeventloop.h>
#ifndef QEVENTLOOP_H
class QEventLoop: public QObject{
   /* Some contents are skipped to improve readability */
   public: enum ProcessEventsFlag{
      AllEvents = 0,
      ExcludeUserInputEvents = 1,
      ExcludeSocketNotifiers = 2,
      WaitForMoreEvents = 4,
      X11ExcludeTimers = 8,
      DeferredDeletion = 16,
   };
   /* ... */
};
#endif // QEVENTLOOP_H