|
Elm
2
ELM is a library providing generic data structures, OS-independent interface, plugins and XML.
|
7 #ifndef ELM_INHSTRUCT_SLLIST_H
8 #define ELM_INHSTRUCT_SLLIST_H
10 namespace elm {
namespace inhstruct {
34 int count(
void)
const;
35 inline bool isEmpty(
void)
const;
76 #endif // ELM_INHSTRUCT_SLLIST_H
SLNode(void)
Definition: SLList.h:44
void removeLast(void)
Definition: inhstruct_SLList.cpp:102
int count(void) const
Definition: inhstruct_SLList.cpp:74
void removeNext(void)
Definition: SLList.h:53
SLNode * first(void) const
Definition: SLList.h:60
void addLast(SLNode *node)
Definition: inhstruct_SLList.cpp:90
void addFirst(SLNode *node)
Definition: SLList.h:63
void removeFirst(void)
Definition: SLList.h:67
SLNode * next(void) const
Definition: SLList.h:46
SLNode * last(void) const
Definition: inhstruct_SLList.cpp:59
bool isEmpty(void) const
Definition: SLList.h:70
void insertAfter(SLNode *node)
Definition: SLList.h:49
SLList(void)
Definition: SLList.h:58