broke classes down into own files, preparing to change model to pass by reference with int return type for almost everything

This commit is contained in:
Chris Punches
2017-04-30 01:39:03 -04:00
parent 8a53aefd48
commit 245ee4323a
33 changed files with 648 additions and 326 deletions

View File

@@ -18,9 +18,9 @@ int main()
for ( int i = 0; i < plan.num_tasks(); ++i )
{
Task current_task = plan.select_task_index( i );
Task current_task = plan.get_task(i);
Unit current_unit = unit_definitions.select_unit( current_task.get_name() );
Unit current_unit = unit_definitions.get_unit(current_task.get_name());
std::cout << "Found task name in \"" << configuration.get_plan_path() << "\":\t" << current_task.get_name() << std::endl << std::endl;