testregistrydata.h

来自「基于sipfoundy 公司开发的sipx协议API」· C头文件 代码 · 共 90 行

H
90
字号
//// Copyright (C) 2004, 2005 Pingtel Corp.// //// $$//////////////////////////////////////////////////////////////////////////////#ifndef _TestRegistryData_h_#define _TestRegistryData_h_// SYSTEM INCLUDES// APPLICATION INCLUDES#include "utl/UtlString.h"// DEFINES// MACROS// EXTERNAL FUNCTIONS// EXTERNAL VARIABLES// CONSTANTS// STRUCTS// TYPEDEFS// FORWARD DECLARATIONS/** */class TestRegistryData{/* //////////////////////////// PUBLIC //////////////////////////////////// */  public:/* ============================ CREATORS ================================== */    /**    * Default constructor    */    TestRegistryData();            /**    * Copy constructor    */    TestRegistryData(const TestRegistryData& rTestRegistryData);         /**    * Destructor    */    virtual ~TestRegistryData();    /* ============================ MANIPULATORS ============================== */    /**    * Assignment operator    *    * @param rhs right hand side of the equals operator    */    TestRegistryData& operator=(const TestRegistryData& rhs);      /* ============================ ACCESSORS ================================= */    const UtlString getIdentity() const;    const UtlString getRealm() const;    const UtlString getContact() const;    const UtlString getCallId() const;    const int getExpires() const;    const int getBornOnDate() const;    void setIdentity(const UtlString identity);    void setRealm(const UtlString realm);    void setContact(const UtlString contact);    void setCallId(const UtlString callId);    void setExpires(const int expires);    void setBornOnDate(const int bornOnDate);    /* ============================ INQUIRY =================================== *//* //////////////////////////// PROTECTED ///////////////////////////////// */  protected:/* //////////////////////////// PRIVATE /////////////////////////////////// */  private:    UtlString mIdentity;    UtlString mRealm;    UtlString mContact;    UtlString mCallId;    int mExpires;    int mBornOnDate;    };/* ============================ INLINE METHODS ============================ */#endif  // _TestRegistryData_h_

⌨️ 快捷键说明

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