
#define Q_CONSTRUCTOR_FUNCTION_2(AFUNC)  static const int AFUNC ## __init_variable__ = AFUNC (); \
					 void AFUNC ## __unused__() { static int used = AFUNC ## __init_variable__; used++; }
#define Q_CONSTRUCTOR_FUNCTION(AFUNC)    Q_CONSTRUCTOR_FUNCTION_2(AFUNC)

#include <QtCore/qglobal.h>

