#include question

Lucas Vogel lvogel@exponent.com
Tue, 29 Aug 2000 10:18:26 -0700


I get a C++ tip of the day email, and I have found a line of code that I do
not understand. Can anyone explain the #include line to me? The code sample
is on merging two lists.

-------------------------------------------
#include < list >
using std::list; 

int main()
{
list < int > first;
list < int > second;
// fill both lists
first.push_back(1);
first.push_back(8); /* first is sorted */
second.push_back(2);
second.push_back(10); /* second is sorted */
/* merge second into first */
first.merge(second);
/* at this point, second is empty and first */
/* contains 4 elements in ascending order */
} 
-------------------------------------------

thanks



-------------------------------------------
Lucas Vogel, Software Developer
LandWarrior Project
Exponent Inc.
lvogel@exponent.com
phone:	(623)587-6739
fax:		(623)587-4187
------------www.exponent.com---------------