#include <QtCore/qdebug.h>
#ifndef QDEBUG_H
#if !defined(QT_NO_DEBUG_STREAM)
class QDebug{
   /* Some contents are skipped to improve readability */
   private: struct Stream{
      public: inline Stream(class QIODevice* device);
      public: inline Stream(class QString* string);
      public: inline Stream(enum QtMsgType t);
      public: class QTextStream ts;
      public: class QString buffer;
      public: int ref;
      public: enum QtMsgType type;
      public: bool space;
      public: bool message_output;
   };
   /* ... */
};
#else // QT_NO_DEBUG_STREAM
#endif
#endif // QDEBUG_H