Hi

When I study qt/example/network/torrent client I discovered non documented macro named Q_GLOBAL_STATIC. I suspect that it resolves classic problem with global singleton objects which are not created on stack nor as class member variable nor in main function but exists alone under pointer in obj file (like in classic C). I am very keen to use this macro, but I am worry why they do not documented it. I am afraid that they do not recommended that macro, but why they used it??? I hang my project now and I must make decision - use that macro or not?