I'm trying to put some non-standard characters into a stringstream, namely, the copyright sign and comparison signs. To be clear, the symbols I'd like are:
© (with a circle, not parentheses), >, >=, <, <=
Obviously, these can be typed with multiple characters. What I'm trying to do, though, is line these up without extraneous whitespace, and to do that, I need to use one character. I know the characters exist, but I just don't know how to put them in a stringstream.
So, right now I'm doing something like this:
stream << "(c)" << ">=";
when I want to do something like this:
stream << copyrightCharacter << lessThanEqualCharacter;
Can anyone please give me some pointers on how to do this?
Thanks,
Zel2008

New Topic/Question
Reply




MultiQuote



|