📄 ptterminallistener.h
字号:
//// Copyright (C) 2004, 2005 Pingtel Corp.// //// $$//////////////////////////////////////////////////////////////////////////////#ifndef _PtTerminalListener_h_#define _PtTerminalListener_h_// SYSTEM INCLUDES// APPLICATION INCLUDES#include "PtEventListener.h"// DEFINES// MACROS// EXTERNAL FUNCTIONS// EXTERNAL VARIABLES// CONSTANTS// STRUCTS// TYPEDEFS// FORWARD DECLARATIONSclass PtTerminalEvent;//: The PtTerminalListener is used to register with and receive events from//: PtTerminal objects.class PtTerminalListener : public PtEventListener{/* //////////////////////////// PUBLIC //////////////////////////////////// */public: PT_CLASS_INFO_MEMBERS/* ============================ CREATORS ================================== */ PtTerminalListener(const char * pTerminalName = NULL, PtEventMask* pMask = NULL); //:Default constructor //!param: (in) pMask - Event mask defining events the listener is interested. This must be a subset of the events that the listener supports. The mask may be NULL where it is assumed that all events applicable to the derived listener are of interest. virtual ~PtTerminalListener(); //:Destructor/* ============================ MANIPULATORS ============================== */ void terminalEventTransmissionEnded(const PtTerminalEvent& rEvent); //: Method invoked on listener for event id = //: TERMINAL_EVENT_TRANSMISSION_ENDED //: indicating that the application will no longer receive Terminal events on the instance of the PtTerminalListener. // The event parameter is valid only within // this method. The implementation must copy the event if // it is needed beyond the scope of an invocation. The implementation // of this method should not block as it may prevent other listeners // from processing events in a timely fashion. //!param: (in) rEvent - Reference to the PtEvent containing the specific event information. PtStatus setTerminalName(const char* name);/* ============================ ACCESSORS ================================= */ PtStatus getTerminalName(char* name, int len); static const char* className(); //:Returns the name of this class //!returns: Returns the string representation of the name of this class/* ============================ INQUIRY =================================== */ virtual PtBoolean isClass(const char* pClassName); //:Determines if this object if of the specified type. //!param: (in) pClassName - the string to compare with the name of this class. //!retcode: TRUE - if the given string contains the class name of this class. //!retcode: FALSE - if the given string does not match that of this class virtual PtBoolean isInstanceOf(const char* pClassName); //:Determines if this object is either an instance of or is derived from //:the specified type. //!param: (in) pClassName - the string to compare with the name of this class. //!retcode: TRUE - if this object is either an instance of or is derived from the specified class. //!retcode: FALSE - if this object is not an instance of the specified class./* //////////////////////////// PROTECTED ///////////////////////////////// */protected: char * mpTerminalName;/* //////////////////////////// PRIVATE /////////////////////////////////// */private: PtTerminalListener(const PtTerminalListener& rPtTerminalListener); //:Copy constructor PtTerminalListener& operator=(const PtTerminalListener& rhs); //:Assignment operator};/* ============================ INLINE METHODS ============================ */#endif // _PtTerminalListener_h_
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -