dumfeaturemessage.hxx
来自「这是国外的resip协议栈」· HXX 代码 · 共 34 行
HXX
34 行
#if !defined(RESIP_DumFeatureMessage_hxx)#define RESIP_DumFeatureMessage_hxx #include <iosfwd>#include "resip/stack/ApplicationMessage.hxx"namespace resip{//!dcm! -- what is the intent of ApplicationMessage, especially as used in//repro? Is this really what ApplicationMessage should be(always has tid)class DumFeatureMessage : public ApplicationMessage{ public: DumFeatureMessage(const Data& tid); DumFeatureMessage(const DumFeatureMessage&); ~DumFeatureMessage(); Message* clone() const; virtual std::ostream& encode(std::ostream& strm) const; /// output a brief description to stream virtual std::ostream& encodeBrief(std::ostream& str) const; virtual const Data& getTransactionId() const { return mTransactionId; } private: Data mTransactionId; };}#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?