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;
void removeFirst(void)
Definition: SLList.h:67
void addFirst(SLNode *node)
Definition: SLList.h:63
void removeLast(void)
Definition: inhstruct_SLList.cpp:102
int count(void) const
Definition: inhstruct_SLList.cpp:74
SLNode * first(void) const
Definition: SLList.h:60
SLList(void)
Definition: SLList.h:58
SLNode * last(void) const
Definition: inhstruct_SLList.cpp:59
void addLast(SLNode *node)
Definition: inhstruct_SLList.cpp:90
bool isEmpty(void) const
Definition: SLList.h:70
SLNode * next(void) const
Definition: SLList.h:46
void removeNext(void)
Definition: SLList.h:53
void insertAfter(SLNode *node)
Definition: SLList.h:49
SLNode(void)
Definition: SLList.h:44