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

Search:

Type: Posts; User: Lindley

Search: Search took 0.26 seconds.

  1. Replies
    8
    Views
    12,850

    Re: Library and Template Trouble

    If indeed there is a link object in namespace std, then the solution is to drop the "using namespace std;" line and instead make individual statements like

    using std::cout;
    using std::endl;
    ...
  2. Replies
    8
    Views
    12,850

    Re: Library and Template Trouble

    I suppose I'll first give the obligatory "there are perfectly good smart pointer libraries available, why are you reinventing the wheel" response. It looks like this is probably homework, but someone...
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured