C/C++
toolsh.asc
Associated article: Examining RogueWave's Tools.h++
Tags: C/C++ Tools
_EXAMINING ROGUEWAVE'S TOOLS.H++_
by P.W. Scherer
Listing One
RWCString wonderTool("Rogue");
wonderTool += "Wave tools.h++";
cout << wonderTool << endl; // Prints "RogueWave tools.h++"
// ( '+=' concatenates)
RWCString aString = "...


