#include <QtCore/qpair.h>
#ifndef QPAIR_H
template < typename T1, typename T2 > struct QPair{
   /* Some contents are skipped to improve readability */
   public: inline QPair(T1 const & t1, T2 const & t2);
   /* ... */
};
#endif // QPAIR_H