Click to See Complete Forum and Search --> : String class wanted


April 11th, 1999, 07:12 AM
Hi!
Anyone who have a simple regular string class (not MFC's CString).
It will be runned on UNIX and Windows.

// Jocke

Dave Lorde
April 12th, 1999, 05:35 AM
Use the STL string (in the std namespace):

#include <string>
using std::string;

string hello = "Hello";

Dave