Browse Subversion Repository
Contents of /runCtrl/RunIdHandler.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: 566 byte(s)
using namespace beego
| 1 |
#ifndef RUN_ID_HANDLER_H |
| 2 |
#define RUN_ID_HANDLER_H |
| 3 |
|
| 4 |
/*! |
| 5 |
\file |
| 6 |
\brief s§äĚNX |
| 7 |
|
| 8 |
\author Satofumi KAMIMURA |
| 9 |
|
| 10 |
$Id$ |
| 11 |
*/ |
| 12 |
|
| 13 |
#include "ProductIdHandler.h" |
| 14 |
#include <memory> |
| 15 |
|
| 16 |
|
| 17 |
namespace beego { |
| 18 |
/*! |
| 19 |
\brief RunCtrl ĚÚąÇ |
| 20 |
*/ |
| 21 |
class RunIdHandler : public ProductIdHandler { |
| 22 |
RunIdHandler(const RunIdHandler& rhs); |
| 23 |
RunIdHandler& operator = (const RunIdHandler& rhs); |
| 24 |
|
| 25 |
public: |
| 26 |
RunIdHandler(void); |
| 27 |
~RunIdHandler(void); |
| 28 |
|
| 29 |
bool checkProductId(const char* device, const char* productId) const; |
| 30 |
}; |
| 31 |
}; |
| 32 |
|
| 33 |
#endif /* !RUN_ID_HANDLER_H */ |
|