📄 h323utils.cpp
字号:
/*=============================================================
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -