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

Search:

Type: Posts; User: lucky6969b

Search: Search took 0.10 seconds.

  1. Replies
    5
    Views
    1,533

    Re: osstream doesn't flush or clear

    Thanks, it's all great
  2. Replies
    5
    Views
    1,533

    Re: osstream doesn't flush or clear

    2 problems on hand


    template <class T>
    std::string ToStr(const T& value)
    {
    std::ostringstream oss;
    oss << value;
    return oss.str();
    }
  3. Replies
    5
    Views
    1,533

    osstream doesn't flush or clear

    std::ostringstream ss;
    ss.flush();
    ss.clear();
    ss << v.x;
    std::string buff(ss.str());
    XMLString::transcode(buff.c_str(), tempStr, 99);...
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured