OpenSS7 SS7 for the Common Man |
© Copyright 1997-2004,OpenSS7 Corporation, All Rights Reserved. |
||||||||||||||||||||||||||
Home | Overview | Status | News | Documentation | Resources | About | |||||||||||||||||||||
File /code/strss7/drivers/sua/sua_data.cpp#ident "@(#) $RCSfile: sua_data.cpp,v $ $Name: $($Revision: 0.8 $) $Date: 2002/04/02 08:21:09 $" static char const ident[] = "$RCSfile: sua_data.cpp,v $ $Name: $($Revision: 0.8 $) $Date: 2002/04/02 08:21:09 $"; #pragma implementation #include "sua_data.hh" sccp* sccp ::list = NULL; sccpp* sccpp::list = NULL; sccpu* sccpu::list = NULL; sccp::sccp(void) { if ( (next = list) ) next->prev = &next; prev = &list; } sccp::~sccp(void) { if ( (*prev = next) ) next->prev = prev; } sccpu::sccpu(void) : sccp(), dp() { if ( (next = list) ) next->prev = &next; prev = &list; } sccpu::~sccpu(void) { if ( (*prev = next) ) next->prev = prev; } sccpp::sccpp(void) : sccp(), lp() { if ( (next = list) ) next->prev = &next; prev = &list; } sccpp::~sccpp(void) { if ( (*prev = next) ) next->prev = prev; }
|
|||||||||||||||||||||||||||
OpenSS7 SS7 for the Common Man |
Home | Overview | Status | News | Documentation | Resources | About | ||||||||||||||||||||
© Copyright 1997-2004,OpenSS7 Corporation, All Rights Reserved. |