📄 confmember.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 + -