#ifndef CLASS_H
#define CLASS_H

#include <objc/objc.h>
#include <objc/Object.h>

@interface Course : Object
{
	int begin, end, call, course;
	char *days, *name, *subject, *buffer, *instructor;
}

-init:(char*)nam subject:(char*)sub course:(int)cour 
	days:(char*)day call:(int)cal instructor:(char*)prof
	startsAt:(int)sta endsAt:(int)sto;

-free;

-(char*)getTimes;
-(int)getStartTime;
-(int)getEndTime;
-(char*)getDays;
-(int)getCallNumber;
-(char*)getCourseNumber;
-(char*)getCourseName;
-(char*)getInstructorName;
-(int)getBufferLength;

@end

#endif

