Maor Tanami / DriveCommand
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers DriveCommand.h Source File

DriveCommand.h

00001 #ifndef DRIVECOMMAND_H
00002 #define DRIVECOMMAND_H
00003 
00004 
00005 class DriveCommand
00006 {
00007     public:
00008     
00009     DriveCommand(char dir,float timeInSec);
00010     DriveCommand(){}
00011     float GetTime();
00012     char GetDir();
00013     void SetTime(float time);
00014     void SetDir(char dir);
00015 
00016     private:
00017     char _dir;
00018     float _time;
00019     
00020     
00021     
00022     
00023     
00024     
00025     
00026     
00027     
00028     
00029     
00030     
00031     
00032     
00033     
00034 };
00035 
00036 
00037 
00038 
00039 #endif