Linkable Class Reference

#include <_link.h>

List of all members.

Public Member Functions

 Linkable (Linkable *next=NULL)
virtual ~Linkable ()
LinkableGetNext (void)
void Insert (Linkable *prv, Linkable *nxt)
void Remove (Linkable *prv)

Private Attributes

LinkablepNext


Detailed Description

Definition at line 15 of file _link.h.


Constructor & Destructor Documentation

Linkable::Linkable ( Linkable next = NULL  )  [inline]

Definition at line 23 of file _link.h.

00023 { pNext = next; }

virtual Linkable::~Linkable (  )  [inline, virtual]

Definition at line 24 of file _link.h.

00024 {}


Member Function Documentation

Linkable* Linkable::GetNext ( void   )  [inline]

Definition at line 26 of file _link.h.

00026 { return pNext; }

void Linkable::Insert ( Linkable prv,
Linkable nxt 
) [inline]

Definition at line 27 of file _link.h.

00027 { if(prv) prv->pNext = this; pNext = nxt; }

void Linkable::Remove ( Linkable prv  )  [inline]

Definition at line 28 of file _link.h.

00028 { if(prv) prv->pNext = pNext; }


Member Data Documentation

Definition at line 18 of file _link.h.


The documentation for this class was generated from the following file:

Generated on Thu Nov 28 14:47:23 2013 for red_wireless by  doxygen 1.5.7.1