Hi!
Anyone who have a simple regular string class (not MFC's CString).
It will be runned on UNIX and Windows.
// Jocke
Printable View
Hi!
Anyone who have a simple regular string class (not MFC's CString).
It will be runned on UNIX and Windows.
// Jocke
Use the STL string (in the std namespace):
#include <string>
using std::string;
string hello = "Hello";
Dave