When I use the following statement,
typedef QPair<ItemA, ItemB> test
where ItemB
is a smart pointer.ie typedef QSharedpointer<Z> ItemB
When I instantiate test, should I provide initialization values ?
eg: test Inst1(0,0);
Or does QPair
automatically provide default constructed values?