sipxportlib  Version 3.3
UtlDList.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 _UtlDList_h_
13 #define _UtlDList_h_
14 
15 // SYSTEM INCLUDES
16 // APPLICATION INCLUDES
17 #include "utl/UtlDefs.h"
18 #include "utl/UtlSList.h"
19 
20 // DEFINES
21 // MACROS
22 // EXTERNAL FUNCTIONS
23 // EXTERNAL VARIABLES
24 // CONSTANTS
25 // STRUCTS
26 // TYPEDEFS
27 // FORWARD DECLARATIONS
28 
36 class UtlDList : public UtlSList
37 {
38 /* //////////////////////////// PUBLIC //////////////////////////////////// */
39 public:
45  UtlDList();
46 
47 
51  virtual ~UtlDList() ;
52 
53 
54 /* ============================ CREATORS ================================== */
55 
56 /* ============================ MANIPULATORS ============================== */
57 
58 /* ============================ ACCESSORS ================================= */
59 
60 /* ============================ INQUIRY =================================== */
61 
62 
66  virtual UtlContainableType getContainableType() const;
67 
68 
69 /* //////////////////////////// PROTECTED ///////////////////////////////// */
70 protected:
71 
72 /* //////////////////////////// PRIVATE /////////////////////////////////// */
73 private:
74 
75 
76 } ;
77 
78 /* ============================ INLINE METHODS ============================ */\
79 
80 #endif // _UtlDList_h_
81 
static UtlContainableType TYPE
Definition: UtlDList.h:40
virtual ~UtlDList()
Definition: UtlDList.cpp:38
const char *const UtlContainableType
Definition: UtlDefs.h:70
Definition: UtlSList.h:47
virtual UtlContainableType getContainableType() const
Definition: UtlDList.cpp:54
Definition: UtlDList.h:36
UtlDList()
Definition: UtlDList.cpp:28