hd

CellCancelQueue.h 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*************************************************************************
  2. 【文件名】 CellCancelQueue.h
  3. 【功能模块和目的】
  4. 【开发者及日期】 郑石诺 2015/02/02
  5. 【版本】 V1.0.0
  6. 【版权信息】 Copyright (C)2015 河南华谊网络科技有限公司
  7. 【更改记录】
  8. *************************************************************************/
  9. #pragma once
  10. #include "cellbase.h"
  11. #include "CellAUTOCREATE.h"
  12. /*************************************************************************
  13. 【类名】 CCellCancelQueue
  14. 【功能】
  15. 【接口说明】
  16. 【开发者及日期】 郑石诺 2015/02/02
  17. 【版本】 V1.0.0
  18. 【版权信息】 Copyright (C)2015 河南华谊网络科技有限公司
  19. 【更改记录】
  20. *************************************************************************/
  21. class CCellCancelQueue : public CCellBase
  22. {
  23. DECLARE_CELL_AUTOCREATE
  24. public:
  25. CCellCancelQueue(void);
  26. CCellCancelQueue( CCellCancelQueue & cellCancelQueue );
  27. virtual ~CCellCancelQueue(void);
  28. ////////////////////////////////////////////////////////////////////////////////
  29. //继承自CCellBase
  30. int operate(void);
  31. CCellBase * copy(void);
  32. bool fillData(IFlowDataProvider& Provider);
  33. LPCTSTR name(void) const { return CELL_NAME_CANCEL_QUEUE; }
  34. int maxWaitingTime(void) const { return 0; }
  35. private:
  36. int m_NextPos; // 下一个节点编号
  37. CString m_Reason; // 取消原因
  38. };