CS202   2- ‹#›
“class” Terminology
nFor the list of videos data type we used
n
äclass list { <--- the data type!!!
ä   public:
ä      list(); <--- the constructor
ä      int add (const video &);    3 member functions
ä      int remove (char title[]);
ä      int display_all();
ä   private:
ä      video my_list[CONST_SIZE];     data members
ä    int num_of_videos;
ä}; <--- notice like structures we need a semicolon