/**
 * The Instructor class contains all of the objects for instructors to use
 * 
 * @author Daniel Gilliland
 */
package user;

import question.*;
import test.*;

public class Instructor extends User {
	
	/**
	 * Contains all of the tests that the instructors have saved
	 */
	TestDB tests;
	
	/**
	 * Contains all question banks by class for the instructor to use
	 */
	QuestionBankDB questionBank;
	
}