OnlineCardIdentifyService.h 543 B

12345678910111213141516171819
  1. #pragma once
  2. #include "IdentifyService.h"
  3. //////////////////////////////////////////////////////////////////////////
  4. // author liulang
  5. // date 2020-04-24
  6. //////////////////////////////////////////////////////////////////////////
  7. namespace OnLineCard{
  8. struct PaperTemplate;
  9. class COnlineCardIdentifyService : public CIdentifyService
  10. {
  11. public:
  12. COnlineCardIdentifyService(CBatchService *batchService);
  13. virtual ~COnlineCardIdentifyService();
  14. public:
  15. void SetTemplate(PaperTemplate*pT);
  16. virtual void InitService() override;
  17. };
  18. }