s
DriveCommand.h
- Committer:
- Maor_T
- Date:
- 2016-07-04
- Revision:
- 0:9b6dc5b1dc33
File content as of revision 0:9b6dc5b1dc33:
#ifndef DRIVECOMMAND_H
#define DRIVECOMMAND_H
class DriveCommand
{
public:
DriveCommand(char dir,float timeInSec);
DriveCommand(){}
float GetTime();
char GetDir();
void SetTime(float time);
void SetDir(char dir);
private:
char _dir;
float _time;
};
#endif