powerdown manager. simulation manager introduced

This commit is contained in:
Janik Schlemminger
2014-04-05 12:18:34 +02:00
parent 0e07876071
commit 2145f3b18c
43 changed files with 823 additions and 956 deletions

View File

@@ -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);
}
}