C++: Difference between revisions

[unchecked revision][unchecked revision]
Content deleted Content added
No edit summary
m I screwed up the format in my last edit - sorry!
Line 384:
 
====Why?====
C++ classes and templates such as <tt>std::vector</tt>, <tt>std::list</tt>, <tt>std::cout</tt>, <tt>std::string</ttt>, to name a few, are not actually part of the C++ language. They are part of a library called the Standard Template Library. A lot of the code depending on STL is OS-dependent, so you must port an STL implementation to your OS.
 
====Porting a Standard Template Library====