Go straight controller.h

From IridiaWiki
Revision as of 20:03, 21 April 2006 by Rogrady (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
#ifndef GO_STRAIGHT_BEHAVIOUR_H
#define GO_STRAIGHT_BEHAVIOUR_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 );

};