![]() |
My Project
|
#include <LinkedList.h>
Public Member Functions | |
Link () | |
virtual | ~Link () |
bool | active () const |
void | setActive (bool value=true) |
Link * | justNext () |
Link * | justPrev () |
Link * | next () |
Link * | prev () |
const Link * | next () const |
const Link * | prev () const |
virtual bool | setUp ()=0 |
virtual bool | tearDown ()=0 |
void | attach (List &l) |
void | detach (List &l) |
Private Member Functions | |
Link (const Link &) | |
Link & | operator= (const Link &) |
Private Attributes | |
Link * | _next |
Link * | _prev |
bool | _active |
Definition at line 31 of file LinkedList.h.
CxxTest::Link::Link | ( | ) |
Definition at line 82 of file LinkedList.cpp.
|
virtual |
Definition at line 89 of file LinkedList.cpp.
bool CxxTest::Link::active | ( | ) | const |
Definition at line 93 of file LinkedList.cpp.
void CxxTest::Link::attach | ( | List & | l | ) |
void CxxTest::Link::detach | ( | List & | l | ) |
Link * CxxTest::Link::justNext | ( | ) |
Definition at line 103 of file LinkedList.cpp.
Link * CxxTest::Link::justPrev | ( | ) |
Definition at line 108 of file LinkedList.cpp.
Link * CxxTest::Link::next | ( | ) |
Definition at line 113 of file LinkedList.cpp.
Link * CxxTest::Link::prev | ( | ) |
void CxxTest::Link::setActive | ( | bool | value = true | ) |
Definition at line 98 of file LinkedList.cpp.
|
pure virtual |
|
pure virtual |
|
private |
Definition at line 57 of file LinkedList.h.
|
private |
Definition at line 55 of file LinkedList.h.
|
private |
Definition at line 56 of file LinkedList.h.