CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: terminalXXX

Search: Search took 0.02 seconds.

  1. Replies
    10
    Views
    2,291

    Re: Share-pointer and void

    Thanks Paul and 2kaud,

    We work only on mixed mode dlls and CLI test classes, the test class method is simple and does exactly the same job as the main function does in Paul's example. And sure, if...
  2. Replies
    10
    Views
    2,291

    Re: Share-pointer and void

    I have posted it in some of my previous posts, I don't know what else I can extract from the real code to demonstrate the problem. I change all user-defined time to void* (return types and parameters...
  3. Replies
    10
    Views
    2,291

    Share-pointer and void

    I have a share-pointer defined as
    typedef std::share_ptr<MyClass> MyClassPtr;

    and a class

    class Example
    {
    public:
    MyClassPtr DoSomething()
    {
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured