package instructor;

import javax.swing.JButton;


/**
* This class contains the introduction gui provided to the instructor upon login.
* @author celind
*/
 
abstract class Intro {
   Instructor instructor;
   JButton logout;
   JButton viewSchedule;
   JButton editPreferences;
   
   public abstract void logout();
   public abstract void viewSchedule();
   public abstract void editPreferences();
}