-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathTimedCommand.cpp
48 lines (36 loc) · 911 Bytes
/
TimedCommand.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
* TimedCommand.cpp
*
* Created on: 7 Jun 2012
* Author: fletcherb
*/
#include "TimedCommand.h"
TimedCommand::TimedCommand(String iCronString, Command *iCommand) {
cronString = iCronString;
command = iCommand;
}
TimedCommand::TimedCommand(String iCronString, Command *iCommand,String iParameters) {
cronString = iCronString;
command = iCommand;
parameters = iParameters;
}
TimedCommand::~TimedCommand() {
}
void TimedCommand::setCronString(String iCronString){
cronString = iCronString;
}
void TimedCommand::setCommand(Command *iCommand){
command = iCommand;
}
String TimedCommand::getCronString(){
return cronString;
}
Command* TimedCommand::getCommand(){
return command;
}
String TimedCommand::getParameters(){
return parameters;
}
void TimedCommand::setParameters(String iParameters){
parameters = iParameters;
}