h323utils.cpp
来自「一个c++实现的acd的例子。 ----ACDCommandListener.」· C++ 代码 · 共 46 行
CPP
46 行
/*=============================================================
Function:
Author: Leon Wang <wlywly@sina.com giga2@tom.com>
==============================================================*/
// H323Utils.cpp: implementation of the H323Utils class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "H323Utils.h"
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
//##ModelId=424BB6450364
H323Utils::H323Utils()
{
}
//##ModelId=424BB6450365
H323Utils::~H323Utils()
{
}
/**
* Remove the type from the alias string.
* @param _alias alias with type from GnuGk
* @return alias name without type
*/
//##ModelId=424BB6450367
CString H323Utils::extractAliasName(CString _alias)
{
CString aliasName = _alias;
int pos = _alias.Find(':');
if (pos != -1)
aliasName = _alias.Left(pos);
return aliasName;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?