| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /*************************************************************************
- 【文件名】 CTI\ViewExten.h
- 【功能模块和目的】 分机视图类头文件
- 【开发者及日期】 郑石诺 2015/06/29
- 【版本】 V1.0.0
- 【版权信息】 Copyright (C)2015 河南华谊网络科技有限公司
- 【更改记录】
- *************************************************************************/
- #pragma once
- #include "ViewResBase.h"
- /*************************************************************************
- 【类名】 CViewExten
- 【功能】
- 【接口说明】 分机视图类
- 【开发者及日期】 郑石诺 2015/06/29
- 【版本】 V1.0.0
- 【版权信息】 Copyright (C)2015 河南华谊网络科技有限公司
- 【更改记录】
- *************************************************************************/
- class CViewExten : public CViewResBase
- {
- DECLARE_DYNAMIC(CViewExten)
- public:
- CViewExten(void);
- virtual ~CViewExten(void);
- void onResDetail(EventResDetail *pResDetail);
- void onResState(EventResStatus *pResStatus);
- protected:
- DECLARE_MESSAGE_MAP()
- protected:
- void _mapStateToString(UINT State, CString& StrState);
- };
|