CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Sep 2009
    Posts
    19

    Standard typedef name

    Hi!
    Can anyone help me with the following problem or at least point me in the right direction:
    ...
    I need some help in understanding what is meant by "standard typedef name" as in :
    "what is the standard typedef name of:

    template class basic_streambuf<char>?

    I've tried google but with little success...

    Thanks!

  2. #2
    Lindley is offline Elite Member Power Poster
    Join Date
    Oct 2007
    Location
    Seattle, WA
    Posts
    10,895

    Re: Standard typedef name

    I think it means in the same way that std::string is the "standard typedef name" of std::basic_string<char>.

  3. #3
    Join Date
    Sep 2009
    Posts
    19

    Re: Standard typedef name

    Ah ok, thanks!

    So for the above would it be :

    std::streambuf

    not

    std::streambuf<char>

    ??

  4. #4
    Lindley is offline Elite Member Power Poster
    Join Date
    Oct 2007
    Location
    Seattle, WA
    Posts
    10,895

    Re: Standard typedef name

    I think so.

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured