Browse Subversion Repository
Contents of /connection/FindComPorts.h
Parent Directory
| Revision Log
Revision 194 -
( show annotations)
( download)
( as text)
Wed Jan 9 08:37:03 2008 UTC
(16 years, 3 months ago)
by satofumi
File MIME type: text/x-chdr
File size: 326 byte(s)
add connection/FindComPorts.cpp
| 1 |
#ifndef FIND_COM_PORTS_H |
| 2 |
#define FIND_COM_PORTS_H |
| 3 |
|
| 4 |
/*! |
| 5 |
\file |
| 6 |
\brief COM ポート一覧の取得 |
| 7 |
|
| 8 |
\author Satofumi KAMIMURA |
| 9 |
|
| 10 |
$Id$ |
| 11 |
|
| 12 |
\attention 動作確認は Windows XP のみ。他では未検証 |
| 13 |
*/ |
| 14 |
|
| 15 |
#include <string> |
| 16 |
#include <vector> |
| 17 |
|
| 18 |
namespace beego { |
| 19 |
std::vector<std::string> findComPorts(void); |
| 20 |
}; |
| 21 |
|
| 22 |
#endif /* !FIND_COM_PORTS_H */ |
|