CS202   2- ‹#›
List Example
nFor 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;
ä};