Browse Subversion Repository
Contents of /runCtrl/FollowLineInterface.h
Parent Directory
| Revision Log
Revision 279 -
( show annotations)
( download)
( as text)
Wed Mar 12 05:28:19 2008 UTC
(16 years, 1 month ago)
by satofumi
File MIME type: text/x-chdr
File size: 525 byte(s)
adjust tab index
| 1 |
#ifndef FOLLOW_LINE_INTERFACE_H |
| 2 |
#define FOLLOW_LINE_INTERFACE_H |
| 3 |
|
| 4 |
/*! |
| 5 |
\file |
| 6 |
\brief 直線追従コマンドのインターフェース |
| 7 |
|
| 8 |
\author Satofumi KAMIMURA |
| 9 |
|
| 10 |
$Id$ |
| 11 |
*/ |
| 12 |
|
| 13 |
#include "GridTypes.h" |
| 14 |
|
| 15 |
class CoordinateCtrl; |
| 16 |
|
| 17 |
|
| 18 |
namespace beego { |
| 19 |
/*! |
| 20 |
\brief 直線追従インターフェース |
| 21 |
*/ |
| 22 |
class FollowLineInterface { |
| 23 |
public: |
| 24 |
virtual ~FollowLineInterface(void) {} |
| 25 |
virtual void follow_line(const CoordinateCtrl* crd, |
| 26 |
const Position<int>& position) = 0; |
| 27 |
}; |
| 28 |
}; |
| 29 |
|
| 30 |
#endif /* !FOLLOW_LINE_INTERFACE_H */ |
|