OpenCores
URL https://opencores.org/ocsvn/scarts/scarts/trunk

Subversion Repositories scarts

[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [libstdc++-v3/] [docs/] [doxygen/] [Intro.3] - Blame information for rev 20

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 20 jlechner
.\" t
2
.\" This man page is released under the FDL as part of libstdc++-v3.
3
.TH C++Intro 3 "20 May 2004" "GNU libstdc++-v3" "Standard C++ Library"
4
.SH NAME
5
C++Intro \- Introduction to the GNU libstdc++-v3 man pages
6
.SH DESCRIPTION
7
This man page serves as a brief introduction to the GNU implementation of
8
the Standard C++ Library.  For a better introduction and more complete
9
documentation, see the
10
.B libstdc++-v3
11
homepage listed at the end.
12
.P
13
All standard library entities are declared within
14
.I namespace std
15
and have manual entries beginning with "std::".  For example, to see
16
documentation of the template class
17
.I std::vector
18
one would use "man std::vector".  Some entities do not have a separate man
19
page; for those see the main listing in "man Namespace_std".
20
.P
21
All the man pages are automatically generated by Doxygen.  For more
22
information on this tool, see the HTML counterpart to these man pages.
23
.P
24
Some man pages do not correspond to individual classes or functions.  Rather
25
they describe categories of the Standard Library.  (For a more thorough
26
introduction to the various categories, consult a text such as Josuttis'
27
or Austern's.)  These category pages are:
28
.P
29
.\" These are separated by ONE TAB.  Nothing else.  I don't like it either.
30
.TS
31
lB l.
32
C++Intro        This page.
33
Namespace_std   A listing of the contents of std::.
34
Namespace___gnu_cxx     A listing of the contents of __gnu_cxx::.
35
Containers      An introduction to container classes.
36
Sequences       Linear containers.
37
Assoc_containers        Key-based containers.
38
Iterator_types  Programatically distinguishing iterators/pointers.
39
Intro_functors  An introduction to function objects, or functors.
40
Arithmetic_functors     Functors for basic math.
41
Binder_functors Functors which "remember" an argument.
42
Comparison_functors     Functors wrapping built-in comparisons.
43
Func_ptr_functors       Functors for use with pointers to functions.
44
Logical_functors        Functors wrapping the Boolean operations.
45
Member_ptr_functor      Functors for use with pointers to members.
46
Negation_functors       Functors which negate their contents.
47
SGIextensions   A list of the extensions from the SGI STL subset.
48
 
49
.TE
50
.P
51
The HTML documentation typically goes into much more depth.
52
.SH FILES
53
Lots!
54
.SS Standard Headers
55
These headers will be found automatically, unless you instruct the compiler
56
otherwise.
57
.TS
58
lB lB lB lB.
59
          
60
                 
61
             
62
             
63
             
64
            
65
646               
66
                
67
             
68
                    
69
             
70
      
71
.TE
72
.SS Backwards-Compatibility Headers
73
For GCC 3.0 these headers will be found automatically, unless you instruct
74
the compiler otherwise.  You should not depend on this, instead you should
75
read FAQ 5.4 and use a
76
.B backward/
77
prefix.
78
.TS
79
lB lB lB lB.
80
                
81
       
82
         
83
                 
84
          
85
           
86
              
87
            
88
                
89
.TE
90
.SS Extension Headers
91
These headers will only be found automatically if you include the leading
92
.B ext/
93
in the name.  Otherwise you need to read FAQ 5.4.
94
.\" Easy way to generate these columns of headers is to use GNU ls(1):
95
.\" ls -w 40 file1 file2... | sed 's=[a-z_][a-z_]*==g'
96
.TS
97
lB lB.
98
            
99
           
100
                
101
             
102
                 
103
   
104
   
105
     
106
      
107
.TE
108
.SS Libraries
109
.TP
110
.I libstdc++.a
111
The library implementation in static archive form.  If you did not configure
112
libstdc++-v3 to use shared libraries, this will always be used.  Otherwise
113
it will only be used if the user requests it.
114
.TP
115
.I libsupc++.a
116
This library contains C++ language support routines.  Usually you will never
117
need to know about it, but it can be useful.  See FAQ 2.5.
118
.TP
119
.I libstdc++.so[.N]
120
The library implementation in shared object form.  This will be used in
121
preference to the static archive form by default.  N will be a number equal
122
to or greater than 3.  If N is in the 2.x series, then you are looking at
123
the old libstdc++-v2 library, which we do not maintain.
124
.TP
125
.I libstdc++.la
126
.TP
127
.I libsupc++.la
128
These are Libtool library files, and should only be used when working with
129
that tool.
130
.SH CONFORMING TO
131
Almost conforming to
132
.BI "International Standard ISO/IEC 14882:1998(E), " "Programming Languages --- C++"
133
(aka the C++ standard), in addition to corrections proposed by the Library
134
Working Group,
135
.SM JTC1/SC22/WG21.
136
.SH SEE ALSO
137
.UR
138
http://gcc.gnu.org/libstdc++/
139
.UE
140
for the Frequently Asked Questions, online documentation, and much, much more!
141
.\" vim:ts=8:noet:

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.