/************************************************************************* 【文件名】 CellSubFlow.h 【功能模块和目的】 子流程节点类头文件 【开发者及日期】 郑石诺 2015/02/09 【版本】 V1.0.0 【版权信息】 Copyright (C)2015 河南华谊网络科技有限公司 【更改记录】 *************************************************************************/ #pragma once #include "cellbase.h" #include "CellAUTOCREATE.h" class CIvrFlow; /************************************************************************* 【类名】 CCellSubFlow 【功能】 【接口说明】 子流程节点类 【开发者及日期】 郑石诺 2015/02/09 【版本】 V1.0.0 【版权信息】 Copyright (C)2015 河南华谊网络科技有限公司 【更改记录】 *************************************************************************/ class CCellSubFlow : public CCellBase { DECLARE_CELL_AUTOCREATE public: CCellSubFlow(void); CCellSubFlow(CCellSubFlow& CellSubFlow); virtual ~CCellSubFlow(void); //////////////////////////////////////////////////////////////////////////////// //继承自CCellBase int operate(void); CCellBase * copy(void); bool fillData(IFlowDataProvider& Provider); int onOpResultReturn(CPduEntity *a_pPduEntity); LPCTSTR name(void) const { return CELL_NAME_SUB_FLOW; } int maxWaitingTime(void) const { return 0; } private: CIvrFlow* m_pInnerFlow; int m_NextPos; // 下一个节点编号 int m_BeginPos; // 子流程开始节点 CString m_FLowName; // 要执行的子流程名 };