Newsgroups: comp.os.msdos.djgpp From: Peter Berdeklis Subject: Re: gnu string class Message-ID: Nntp-Posting-Host: chinook.physics.utoronto.ca Sender: news AT info DOT physics DOT utoronto DOT ca (System Administrator) Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Organization: University of Toronto - Dept. of Physics In-Reply-To: Date: Mon, 15 Sep 1997 14:10:23 GMT References: Lines: 20 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk On Sat, 13 Sep 1997, Timothy Robb wrote: > I'm writting a C++ assigment for my data structures course and am using > the GNU string class in it. My question is what do I need to put on the > disk I had in such that the marker can properly compile my program? GNU's string class is declared in String.h, but the body of many of the functions is in libgpp.a. Unless your marker has gcc available, it's unlikely that (s)he will be able to link in the gcc library, even if you give it to him/her. If you can do without the nifty Regexp features of the String class, you're probably better off using the new std C++ string class. Not only can you then compile it on any up to date C++ compiler, it's also better to learn the std than a proprietary class structure. --------------- Peter Berdeklis Dept. of Physics, Univ. of Toronto