Go straight controller.h

From IridiaWiki
Revision as of 20:04, 21 April 2006 by Rogrady (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
#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 );

};