Added BestFit and WorstFit class files

This commit is contained in:
David Weber 2012-11-05 21:08:12 -05:00
parent 9588dda536
commit f9a9069e3b
2 changed files with 8 additions and 2 deletions

View File

@ -8,5 +8,8 @@
* @author djw612 * @author djw612
*/ */
public class BestFitAlgorithm { public class BestFitAlgorithm {
public BestFitAlgorithm()
{
//Constructor goes here
}
} }

View File

@ -8,5 +8,8 @@
* @author djw612 * @author djw612
*/ */
public class WorstFitAlgorithm { public class WorstFitAlgorithm {
public WorstFitAlgorithm()
{
//Constructor goes here
}
} }