#include <QtCore/qvarlengtharray.h>
#ifndef QVARLENGTHARRAY_H
template < typename T, int Prealloc = 256 > class QVarLengthArray{
   /* Some contents are skipped to improve readability */
   private: union /*anonymous*/{
      /* ... */
      char array[1];
      /* ... */
   };
   /* ... */
};
#endif // QVARLENGTHARRAY_H