CS202
2- ‹#›
List Example
n
For a list of videos data type:
ä
class list {
ä
public:
ä
list();
ä
int add (const video &);
ä
int remove (char title[]);
ä
int display_all();
ä
private:
ä
video my_list[CONST_SIZE];
//for now...
ä
int num_of_videos;
ä
};