sipxportlib  Version 3.3
UtlDListIterator.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 
12 #ifndef _UtlDListIterator_h_
13 #define _UtlDListIterator_h_
14 
15 // SYSTEM INCLUDES
16 // APPLICATION INCLUDES
17 #include "utl/UtlDefs.h"
18 #include "utl/UtlSListIterator.h"
19 
20 // DEFINES
21 // MACROS
22 // EXTERNAL FUNCTIONS
23 // EXTERNAL VARIABLES
24 // CONSTANTS
25 // STRUCTS
26 // TYPEDEFS
27 // FORWARD DECLARATIONS
28 
35 class UtlDList;
36 
38 {
39 /* //////////////////////////// PUBLIC //////////////////////////////////// */
40 public:
41 
42 /* ============================ CREATORS ================================== */
43 
47  UtlDListIterator(const UtlDList& list) ;
48 
49 
53  virtual ~UtlDListIterator();
54 
55 /* ============================ MANIPULATORS ============================== */
56 
57 /* ============================ ACCESSORS ================================= */
58 
59 /* ============================ INQUIRY =================================== */
60 
61 /* //////////////////////////// PROTECTED ///////////////////////////////// */
62 protected:
63  friend class UtlDList;
64 
65 
66 
67 /* //////////////////////////// PRIVATE /////////////////////////////////// */
68 private:
70 };
71 
72 /* ============================ INLINE METHODS ============================ */
73 
74 #endif // _UtlDListIterator_h_
75 
76 
Definition: UtlSListIterator.h:37
virtual ~UtlDListIterator()
Definition: UtlDListIterator.cpp:37
Definition: UtlDList.h:36
Definition: UtlDListIterator.h:37