#include <QtCore/qvariant.h>
#ifndef QVARIANT_H
class QVariant{
   /* Some contents are skipped to improve readability */
#ifndef qdoc
   public: struct Private{
      /* ... */
      public: union Data{
         char c;
         int i;
         uint u;
         bool b;
         double d;
         qlonglong ll;
         qulonglong ull;
         void* ptr;
         struct QVariant::PrivateShared* shared;
      };
      /* ... */
   };
#endif
   /* ... */
};
#endif // QVARIANT_H