Re: STL ?

2000-02-05 Thread J.H.M. Dassen \(Ray\)
On Fri, Feb 04, 2000 at 10:31:35 -0500, Patrick Dahiroc wrote: >is the STL built into gcc 2.9.x and/or egcs It's part of the same source; you can find it in the accompanying libstdc++ development package. HTH, Ray -- Tevens ben ik van mening dat Nederland overdekt dient te worden.

Re: STL

1997-04-29 Thread David B. Teague
On Mon, 28 Apr 1997, Clint Adams wrote: > > #include > > #include > > etc. > Isn't this HP's STL rather than GNU's? In point of fact, many of the files are unchanged HP implementations. Many are also of completely GNU origin. Check it out. ==David -

Re: STL

1997-04-28 Thread Rob Browning
Clint Adams <[EMAIL PROTECTED]> writes: > Yes, but the copyright at the top of vector.h is HP's. Well, the version in Debian is the only g++ STL I know of. It's quite possible that GNU based it on the HP code. -- Rob -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to

Re: STL

1997-04-28 Thread Clint Adams
> Well, the version in Debian is the only g++ STL I know of. It's quite > possible that GNU based it on the HP code. I consider the genclass prototypes as an STL even though the compiler isn't responsible for the templating. Anyway, I suppose it's not really relevant. I'm reading about SGI's STL

Re: STL

1997-04-28 Thread Maarten Boekhold
On Mon, 28 Apr 1997, Clint Adams wrote: > > I couldn't find any include files... where are they? > > (I know nothing about stl). > > They're in /usr/include/g++ > > For container classes, you'll need to use /usr/bin/genclass But that's not STL.. that's GNU-stuff. Maarten > > See the Inf

Re: STL

1997-04-28 Thread Oleg Krivosheev
Hi, On Mon, 28 Apr 1997, [iso-8859-1] Nicolás Lichtmaier wrote: > On Sun, 27 Apr 1997, Oleg Krivosheev wrote: > > > > I'd like to use/test the Standard Template Library. A GCC faq says that > > > it's included in libg++, but I couldn't find it? Where is it? > > what do you mean you couldn't f

Re: STL

1997-04-28 Thread Clint Adams
> // -*- C++ -*- forwarding header. > // This file is part of the GNU ANSI C++ Library. > > #ifndef __VECTOR__ > #define __VECTOR__ > #include > #endif Yes, but the copyright at the top of vector.h is HP's. -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAI

Re: STL

1997-04-28 Thread Rob Browning
Clint Adams <[EMAIL PROTECTED]> writes: > > #include > > #include > > etc. > > Isn't this HP's STL rather than GNU's? Well, I can't recall where I learned to use the names without the .h's. Perhaps it was the HP web docs. I probably should include the .h's, but GNU makes it more or les

Re: STL

1997-04-28 Thread Clint Adams
> #include > #include > etc. Isn't this HP's STL rather than GNU's? -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .

Re: STL

1997-04-28 Thread Nicolás Lichtmaier
On Mon, 28 Apr 1997, Jason Gunthorpe wrote: > > I'd like to use/test the Standard Template Library. A GCC faq says that > > it's included in libg++, but I couldn't find it? Where is it? > Try /usr/include/g++. You can just include stl headers with a normal > #include when compiling with G++. O

Re: STL

1997-04-28 Thread Jason Gunthorpe
On Mon, 28 Apr 1997, [iso-8859-1] Nicolás Lichtmaier wrote: > > I'd like to use/test the Standard Template Library. A GCC faq says that > it's included in libg++, but I couldn't find it? Where is it? Try /usr/include/g++. You can just include stl headers with a normal #include when compiling w

Re: STL

1997-04-28 Thread Rob Browning
Clint Adams <[EMAIL PROTECTED]> writes: > > I couldn't find any include files... where are they? > > (I know nothing about stl). > > They're in /usr/include/g++ > > For container classes, you'll need to use /usr/bin/genclass > > See the Info documentation for libg++. I don't know what genclas

Re: STL

1997-04-28 Thread Nicolás Lichtmaier
On Mon, 28 Apr 1997, Clint Adams wrote: > They're in /usr/include/g++ > For container classes, you'll need to use /usr/bin/genclass I saw that.. But genclass seems to be an ugly replacement for templates.. I want templates..! =) -- Nicolás Lichtmaier.- [EMAIL PROTECTED] -- TO UNSUBSCRIBE FRO

Re: STL

1997-04-28 Thread Clint Adams
> I couldn't find any include files... where are they? > (I know nothing about stl). They're in /usr/include/g++ For container classes, you'll need to use /usr/bin/genclass See the Info documentation for libg++. -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL

Re: STL

1997-04-28 Thread Nicolás Lichtmaier
On Sun, 27 Apr 1997, Oleg Krivosheev wrote: > > I'd like to use/test the Standard Template Library. A GCC faq says that > > it's included in libg++, but I couldn't find it? Where is it? > what do you mean you couldn't find it? > Any error messages? > Works well for me I couldn't find any includ

Re: STL

1997-04-28 Thread Oleg Krivosheev
Hi On Mon, 28 Apr 1997, [iso-8859-1] Nicolás Lichtmaier wrote: > > I'd like to use/test the Standard Template Library. A GCC faq says that > it's included in libg++, but I couldn't find it? Where is it? what do you mean you couldn't find it? Any error messages? Works well for me OK -- TO