16 Sep
2009
16 Sep
'09
4:30 p.m.
I am new to boost-interprocess. I don't know much about this. Any example converting the std:: string/c-string into boost basic_string will help me. I will be really thankful to you.
basic_string is not boost, it's plain STL.
from <string>:
typedef basic_string<char> string;
To assign two different basic_strings:
std::string s = "foobar";
std::basic_string