⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 confmember.h

📁 MiniSip Client with DomainKeys Authentication, Sip, Audio communications, Echo Cancel
💻 H
字号:
//// C++ Interface: ConfMember//// Description: ////// Author: Max Loubser <loubser@kth.se>, (C) 2005//// Copyright: See COPYING file that comes with this distribution////#ifndef _CONFMEMBER_H#define _CONFMEMBER_H#include<libminisip/libminisip_config.h>#include<string>#include<iostream>class LIBMINISIP_API ConfMember {	public:			ConfMember(std::string the_uri, std::string the_callid ) {			std::cerr << "creating conf member" << std::endl;			uri = the_uri ;			callid = the_callid;		}				std::string uri;		std::string callid;};#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -