Difference between revisions of "Go straight controller.h"
From IridiaWiki
Jump to navigationJump to search| (One intermediate revision by the same user not shown) | |||
| Line 1: | Line 1: | ||
<pre> |
<pre> |
||
| − | #ifndef |
+ | #ifndef GO_STRAIGHT_CONTROLLER_H |
| − | #define |
+ | #define GO_STRAIGHT_CONTROLLER_H |
#include <math.h> |
#include <math.h> |
||
Latest revision as of 19:04, 21 April 2006
#ifndef GO_STRAIGHT_CONTROLLER_H
#define GO_STRAIGHT_CONTROLLER_H
#include <math.h>
#include <stdlib.h>
#include <stdio.h>
#include <sys/timeb.h>
#include <unistd.h>
#include <sys/time.h>
#include "ci_controller.h"
class CGoStraightController: public CCIController
{
public:
CGoStraightController( );
~CGoStraightController( );
CCIController::ReturnVal Init( void );
CCIController::ReturnVal ControlStep( void );
CCIController::ReturnVal Stop( void );
};