CS 213 Assignment Submission Guidelines

GUIDELINES
---------------

Your subject line for assignment submissions should be as follows:

CS213:<SPACE>A?<SPACE>netid
where you replace netid with your actual netid. So if I was submitting my
assignment number 2, it would look like this:

CS213: A4 bbh4

The only filenames I will be checking for are "prob1.cpp" and
"prob2.cpp", which should each contain your main() function for that
problem.

Your other filenames will not matter as long as you include these files
in your submission.

However, because I am not specifying all the filenames for each problem,
you must include a comment at the beginning of your prob1.cpp and
prob2.cpp file telling me what other files are necessary for each
problem.

For example, say for problem 1, I implement all the Character classes in
StarTrek.h and StarTrek.cpp, and implement a list to hold the Characters
in myList.h and myList.cpp, my submission for problem 1 would look like
this:


!! prob1.cpp !!

/* StarTrek.h
StarTrek.cpp
myList.h
myList.cpp */

/* Basil Hayek
bbh4
(etc)... */

// Code for prob1.cpp ...


!! StarTrek.h !!

// Code for StarTrek.h ...


!! StarTrek.cpp !!

// Code for StarTrek.cpp ...


!! myList.h !!

// Code for myList.h ...


!! myList.cpp !!

// Code for myList.cpp ...


--Basil