Browse Subversion Repository
Contents of /rangesCtrl/SearchUrgPort.h
Parent Directory
| Revision Log
Revision 257 -
( show annotations)
( download)
( as text)
Mon Feb 25 01:28:46 2008 UTC
(16 years, 1 month ago)
by satofumi
File MIME type: text/x-chdr
File size: 630 byte(s)
URG ポートの認識まわりを修正した。
| 1 |
#ifndef URG_SEARCH_PORT_H |
| 2 |
#define URG_SEARCH_PORT_H |
| 3 |
|
| 4 |
/*! |
| 5 |
\file |
| 6 |
\brief URG 用ポートの探索 |
| 7 |
|
| 8 |
\author Satofumi KAMIMURA |
| 9 |
|
| 10 |
$Id$ |
| 11 |
*/ |
| 12 |
|
| 13 |
#include <string> |
| 14 |
#include <vector> |
| 15 |
#include <memory> |
| 16 |
|
| 17 |
|
| 18 |
namespace beego { |
| 19 |
class SearchUrgPort { |
| 20 |
SearchUrgPort(const SearchUrgPort& rhs); |
| 21 |
SearchUrgPort& operator = (const SearchUrgPort& rhs); |
| 22 |
|
| 23 |
struct pImpl; |
| 24 |
const std::auto_ptr<pImpl> pimpl; |
| 25 |
|
| 26 |
public: |
| 27 |
SearchUrgPort(void); |
| 28 |
~SearchUrgPort(void); |
| 29 |
std::vector<std::string> search(void); |
| 30 |
// !!! パターンのセット用メソッドも追加すべき |
| 31 |
const char* getSearchedPattern(void); |
| 32 |
}; |
| 33 |
}; |
| 34 |
|
| 35 |
#endif /* !URG_SEARCH_PORT_H */ |
|