From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Orn E. Hansen" To: egcs@cygnus.com Subject: Strings and Integers? Date: Sun, 30 Nov 1997 06:03:00 -0000 Message-id: <199711301401.PAA07276@oehansen.pp.se> X-SW-Source: 1997-11/msg00974.html Hi, I just downloaded your egcs-1127 and compiled it. But when trying to use it with some programs I have, I noticed that there is no implementation of String class. There is only a 'string' class, which appears to be unuseable? i.e. #include #include main() { string str; cin >> str; cout << "Containts: {" << str.data() << "}" << endl; } reveals the error, that "class string" is undefined... Are any of these classes available, or planned ?