able to move to plan impl now

This commit is contained in:
Chris Punches
2017-06-23 15:24:11 -04:00
parent fb87c61e86
commit 9c1580ad95
3 changed files with 5 additions and 6 deletions

View File

@@ -50,6 +50,9 @@ void Suite::load_units_file( std::string filename, bool verbose )
tmp_U.load_root( this->json_root[ index ] );
// append to this->units
this->units.push_back( tmp_U );
if ( verbose ) {
std::cout << "Added unit " << tmp_U.get_name() << " to Suite." << std::endl;
}
}
}

View File

@@ -1,6 +1,5 @@
#include "Task.h"
Task::Task() {}
Task::Task( Json::Value loader_root )
@@ -15,7 +14,6 @@ int Task::load_root(Json::Value loader_root)
this->has_succeeded = false;
}
std::string Task::get_name()
{
return this->name;