Constructor
The list constructor was:  (list.h)
class list {
  public:
      list();   <--- the constructor
      •••
};
The implementation is: (list.cpp)
list::list(){
   num_of_videos = 0;
}