When I use the following statement, typedef QPair<ItemA, ItemB> test where ItemB is a smart pointer.ie typ开发者_运维知识库edef QSharedpointer<Z> ItemB
I am trying to use a smart pointer class in the following way class A { friendclass B; virtual methods ();
I get the following error when trying to use: typedef QSharedPointer<Test> CTest CTest* Module::function(params)
class TestPtr : protected QSharedPointer<Test> where Test is an abstract interface class. The TestPtr class should serve as the sma开发者_如何学Crt pointer class.
in my application i am using to send mail with attachments i write the code like this Using System.Net.Mail;