CS202
2- ‹#›
Constructor
n
The list constructor was:
(list.h)
ä
class list {
ä
public:
ä
list();
<---
the constructor
ä
•••
ä
};
n
The implementation is: (list.c)
ä
list::list(){
ä
num_of_videos = 0;
ä
}
n