powerdown manager. simulation manager introduced
This commit is contained in:
@@ -6,6 +6,7 @@
|
||||
*/
|
||||
#include "ScheduledCommand.h"
|
||||
#include "../utils/Utils.h"
|
||||
#include "../../common/Utils.h"
|
||||
|
||||
namespace core {
|
||||
|
||||
@@ -76,9 +77,9 @@ bool ScheduledCommand::operator ==(const ScheduledCommand& b) const
|
||||
return b.command == command && b.start == start && b.executionTime == executionTime && b.end == end;
|
||||
}
|
||||
|
||||
bool ScheduledCommand::isIn(std::vector<Command> commandSet) const
|
||||
bool ScheduledCommand::commandIsIn(const std::vector<Command>& commandSet) const
|
||||
{
|
||||
return commandIsIn(command, commandSet);
|
||||
return isIn(command, commandSet);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user