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

Search:

Type: Posts; User: jhwilliams

Search: Search took 0.01 seconds.

  1. Thread: std::memcpy

    by jhwilliams
    Replies
    3
    Views
    2,540

    std::memcpy

    Is it in poor taste to use std::memcpy in a highly-OO C++ application? That is, in the same way that the use of realloc / free / malloc / calloc is frowned upon?
  2. Replies
    1
    Views
    4,315

    STL derived function not found?

    I am trying to write a few functions to extend the STL vector class. What I have below seems to work fine for built-in types like "double," "int," what have you, but produces an error when I use...
  3. Replies
    3
    Views
    600

    pointer type for templated node class

    I am trying to make a robust Node<K,D> class, where K is the key type, and D is the datatype. I don't know what to do for the child pointers.

    I would like to be able to do this:

    Node<int,char>...
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured