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