C++ standard Library

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • mase

    C++ standard Library


    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

    #2
    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.

    Comment

    • Sam Holden

      #3
      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

      Comment

      • mase

        #4
        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.









        Comment

        • John L Fjellstad

          #5
          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

          Comment

          • sharkky

            #6
            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@ho tpop.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]


            Comment

            Working...