package scheduler.ScheduleDB;

import scheduler.RoomDB.*;
import scheduler.InstructorDB.*;
import scheduler.CourseDB.*;
import scheduler.ScheduleEntry.*;
import scheduler.Attributes.*;

import java.util.Collection;

/**
 *
 * 
         The course contraint table holds a pairing of all the courses that can't
         be taught at the same time for a given quarter.
     * 
 * @author 
 * @version 
 *
 **/

public class CourseCon {

     /** Default Constructor **/
     public CourseCon() {

     }

     protected SClass dcc;

     protected SClass acc;

     protected SClass bcc;

}