多数据源中间件标准版1.0

CellSubFlow.h 1.4KB

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