12345678910111213141516171819 |
- #pragma once
- #include "IdentifyService.h"
- //////////////////////////////////////////////////////////////////////////
- // author liulang
- // date 2020-04-24
- //////////////////////////////////////////////////////////////////////////
- namespace OnLineCard{
- struct PaperTemplate;
- class COnlineCardIdentifyService : public CIdentifyService
- {
- public:
- COnlineCardIdentifyService(CBatchService *batchService);
- virtual ~COnlineCardIdentifyService();
- public:
- void SetTemplate(PaperTemplate*pT);
- virtual void InitService() override;
- };
- }
|