This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: GCC C++ Dec Docs
- To: jb at dmu dot ac dot uk
- Subject: Re: GCC C++ Dec Docs
- From: "Martin v. Loewis" <martin at loewis dot home dot cs dot tu-berlin dot de>
- Date: Sat, 13 May 2000 00:47:09 +0200
- CC: gcc at gcc dot gnu dot org
- References: <000701bfbbff$6b0668e0$7776e392@jw103-2.cs.cse.dmu.ac.uk>
> I cannot find any documentation re which classes are available and what
> methods I can use.
> With Java I have many HTML JavaDocs to view. Do I need to download GCC
> docs from elsewhere ?
g++ does not provide such documentation. Instead, g++ follows the C++
standard (ISO/IEC 14882:1998); you can look there to find what the
classes and its methods are, or look in any other book about C++. The
latest revision of Stroustrup's "The C++ programming language" is
probably most complete in this respect.
Regards,
Martin