?? cpstringmessage.h
字號:
//// Copyright (C) 2004, 2005 Pingtel Corp.// //// $$//////////////////////////////////////////////////////////////////////////////#ifndef _CpStringMessage_h_#define _CpStringMessage_h_// SYSTEM INCLUDES//#include <...>// APPLICATION INCLUDES#include <os/OsDefs.h>#include <os/OsMsg.h>#include <cp/CallManager.h>// DEFINES// MACROS// EXTERNAL FUNCTIONS// EXTERNAL VARIABLES// CONSTANTS// STRUCTS// TYPEDEFS// FORWARD DECLARATIONS//:Class short description which may consist of multiple lines (note the ':')// Class detailed description which may extend to multiple linesclass CpStringMessage : public OsMsg{/* //////////////////////////// PUBLIC //////////////////////////////////// */public:/* ============================ CREATORS ================================== */ CpStringMessage(unsigned char messageSubtype = CallManager::CP_UNSPECIFIED, const char* str = NULL); //:Default constructor virtual ~CpStringMessage(); //:Destructor virtual OsMsg* createCopy(void) const;/* ============================ MANIPULATORS ============================== *//* ============================ ACCESSORS ================================= */ void getStringData(UtlString& str) const;/* ============================ INQUIRY =================================== *//* //////////////////////////// PROTECTED ///////////////////////////////// */protected:/* //////////////////////////// PRIVATE /////////////////////////////////// */private: UtlString stringData; CpStringMessage(const CpStringMessage& rCpStringMessage); //:disable Copy constructor CpStringMessage& operator=(const CpStringMessage& rhs); //:disable Assignment operator};/* ============================ INLINE METHODS ============================ */#endif // _CpStringMessage_h_
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -