Browse Subversion Repository
Contents of /runCtrl/GetPositionInterface.h
Parent Directory
| Revision Log
Revision 191 -
( show annotations)
( download)
( as text)
Fri Jan 4 02:49:36 2008 UTC
(16 years, 3 months ago)
by satofumi
File MIME type: text/x-chdr
File size: 483 byte(s)
using namespace beego
| 1 |
#ifndef GET_POSITION_INTERFACE_H |
| 2 |
#define GET_POSITION_INTERFACE_H |
| 3 |
|
| 4 |
/*! |
| 5 |
\file |
| 6 |
\brief 推定自己位置の取得インターフェース |
| 7 |
|
| 8 |
\author Satofumi KAMIMURA |
| 9 |
|
| 10 |
$Id$ |
| 11 |
*/ |
| 12 |
|
| 13 |
#include "GridTypes.h" |
| 14 |
|
| 15 |
namespace beego { |
| 16 |
class CoordinateCtrl; |
| 17 |
|
| 18 |
|
| 19 |
/*! |
| 20 |
\brief 位置取得のインターフェース |
| 21 |
*/ |
| 22 |
class GetPositionInterface { |
| 23 |
public: |
| 24 |
virtual ~GetPositionInterface(void) {} |
| 25 |
virtual Position<int> getPosition(const CoordinateCtrl* crd) = 0; |
| 26 |
}; |
| 27 |
}; |
| 28 |
|
| 29 |
#endif /* !GET_POSITION_INTERFACE_H */ |
|