sipXcallLib home page


PtAddressEvent.h
Go to the documentation of this file.
1 //
2 // Copyright (C) 2004-2006 SIPfoundry Inc.
3 // Licensed by SIPfoundry under the LGPL license.
4 //
5 // Copyright (C) 2004-2006 Pingtel Corp. All rights reserved.
6 // Licensed to SIPfoundry under a Contributor Agreement.
7 //
8 // $$
10 
11 #ifndef _PtAddressEvent_h_
12 #define _PtAddressEvent_h_
13 
14 // SYSTEM INCLUDES
15 // APPLICATION INCLUDES
16 // DEFINES
17 // MACROS
18 // EXTERNAL FUNCTIONS
19 // EXTERNAL VARIABLES
20 // CONSTANTS
21 // STRUCTS
22 // TYPEDEFS
23 // FORWARD DECLARATIONS
24 
25 //:PtAddressEvent contains PtAddress-associated event data.
26 
27 class PtAddressEvent : public PtEvent
28 {
29 /* //////////////////////////// PUBLIC //////////////////////////////////// */
30 public:
31 
32 /* ============================ CREATORS ================================== */
33 
34  PtAddressEvent(const PtAddressEvent& rPtAddressEvent);
35  //:Copy constructor
36 
37  virtual
39  //:Destructor
40 
41 /* ============================ MANIPULATORS ============================== */
42 
44  //:Assignment operator
45 
46 /* ============================ ACCESSORS ================================= */
47  PtStatus getAddress(PtAddress*& prAddress);
48  //:Returns the address object associated with this event.
52 
53 /* ============================ INQUIRY =================================== */
54 
55 /* //////////////////////////// PROTECTED ///////////////////////////////// */
56 protected:
57 
58 /* //////////////////////////// PRIVATE /////////////////////////////////// */
59 private:
61  //:Default constructor
62 };
63 
64 /* ============================ INLINE METHODS ============================ */
65 
66 #endif // _PtAddressEvent_h_
PtStatus
Definition: PtDefs.h:49
PtStatus getAddress(PtAddress *&prAddress)
PtAddressEvent & operator=(const PtAddressEvent &rhs)
The PtEvent encapulates data associated with an event notification. The PtEvent is sent to an applica...
Definition: PtEvent.h:76
PtAddressEvent()
param: (out) prAddress - The reference used to return the address pointer retcode: OP_SUCCESS - Succe...
virtual ~PtAddressEvent()
Definition: PtAddressEvent.h:27
Definition: PtAddress.h:189