Connecting Tech Pros Worldwide Forums | Help | Site Map

C++ standard Library

mase
Guest
 
Posts: n/a
#1: Jul 19 '05

Hello

I am making an C++ IDE for Linux. (free License, GPL)

For autocompletion and contextual help I need a complete reference of
the C++ standard library. Its 51 headers (C and STL included) and all its
functions (and if possible an example of each one).

Does it exists such documentation freely available? Where can I download the file?

Thanks In Advance

Rolf Magnus
Guest
 
Posts: n/a
#2: Jul 19 '05

re: C++ standard Library


mase wrote:
[color=blue]
>
> Hello
>
> I am making an C++ IDE for Linux. (free License, GPL)
>
> For autocompletion and contextual help I need a complete reference of
> the C++ standard library. Its 51 headers (C and STL included) and all
> its functions (and if possible an example of each one).
>
> Does it exists such documentation freely available? Where can I
> download the file?[/color]

In your case, you might be better off getting the standard itself. The
pdf version is not so expensive ($18 I think), and of course it
contains a complete description of the standard library.

Sam Holden
Guest
 
Posts: n/a
#3: Jul 19 '05

re: C++ standard Library


On Tue, 12 Aug 2003 01:40:21 +0200, mase <mase900@hotpop.com> wrote:[color=blue]
>
> Hello
>
> I am making an C++ IDE for Linux. (free License, GPL)
>
> For autocompletion and contextual help I need a complete reference of
> the C++ standard library. Its 51 headers (C and STL included) and all its
> functions (and if possible an example of each one).
>
> Does it exists such documentation freely available? Where can I download the file?[/color]

You can buy a pdf copy of the standard for US$18.

There are lots of books about the C++ library (sometimes focusing on a
particular section), a library may have some of them, a University library
(of a University with a science or engineering faculty) should have som of
them.

--
Sam Holden

mase
Guest
 
Posts: n/a
#4: Jul 19 '05

re: C++ standard Library


On Tue, 12 Aug 2003 01:59:57 +0200, Rolf Magnus wrote:
[color=blue]
> mase wrote:
>
>[color=green]
>> Hello
>>
>> I am making an C++ IDE for Linux. (free License, GPL)
>>
>> For autocompletion and contextual help I need a complete reference of
>> the C++ standard library. Its 51 headers (C and STL included) and all
>> its functions (and if possible an example of each one).
>>
>> Does it exists such documentation freely available? Where can I
>> download the file?[/color]
>
> In your case, you might be better off getting the standard itself. The
> pdf version is not so expensive ($18 I think), and of course it contains
> a complete description of the standard library.[/color]

But I am not sure I can freely distribute this file with my
application. (Otherwise somebody would had put it already to download
free at some Web)

Which I am looking for is a documentation to include with my application,
to make indexations and to jump to this documentation in the contextual
help, and to present function prototipes in the autocompletion feature.









John L Fjellstad
Guest
 
Posts: n/a
#5: Jul 19 '05

re: C++ standard Library


mase wrote:
[color=blue]
> Which I am looking for is a documentation to include with my application,
> to make indexations and to jump to this documentation in the contextual
> help, and to present function prototipes in the autocompletion feature.[/color]

Talk with the kdevelop people. They might know something, since they have a
help function in their IDE.

--
John L. Fjellstad
sharkky
Guest
 
Posts: n/a
#6: Jul 19 '05

re: C++ standard Library


Wouldn't it be better if the STL files were actually parsed? That way, in
case it changed (not that it will, but future versions of STL could change
slightly), the parser would automatically update your auto-complete
functionality?

Just my .02

"mase" <mase900@hotpop.com> wrote in message
news:hotpop.com.2003.08.11.23.40.20.455089@hotpop. com...[color=blue]
>
> Hello
>
> I am making an C++ IDE for Linux. (free License, GPL)
>
> For autocompletion and contextual help I need a complete reference of
> the C++ standard library. Its 51 headers (C and STL included) and all its
> functions (and if possible an example of each one).
>
> Does it exists such documentation freely available? Where can I download[/color]
the file?[color=blue]
>
> Thanks In Advance[/color]


Closed Thread