C++: Difference between revisions

No change in size ,  16 years ago
Fix language error
[unchecked revision][unchecked revision]
(Added a list of STL implementations with links)
(Fix language error)
Line 397:
Porting STL, the same with the [[C Standard Library]], do not automatically make your OS to be able to read from and write to the disk, or to get data straight from the keyboard. These are simply wrappers around your OS's functions, and must be implemented by you.
 
Note that it is generally not a good idea to port the entire OSSTL to your kernel, although it is reasonable to port a few classes, such as <tt>std::list</tt> and <tt>std::string</tt> if you wish to. As for your user applications; the more the merrier! :)
 
=====Standard Template Library Implementations=====
Line 407:
* [http://gcc.gnu.org/libstdc++/ libstdc++] (a.k.a. GNU Standard C++ Library)
* [http://www.stlport.org/ STLport]
 
 
==Full C++ Runtime support with libgcc and libsupc++==
Anonymous user