confmember.h

来自「MiniSip Client with DomainKeys Authentic」· C头文件 代码 · 共 35 行

H
35
字号
//// 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 + =
减小字号Ctrl + -
显示快捷键?