cdev-1.7.2n
This commit is contained in:
13
extensions/cdevGenericServer/common/IntHash.cc
Normal file
13
extensions/cdevGenericServer/common/IntHash.cc
Normal file
@@ -0,0 +1,13 @@
|
||||
#include <IntHash.h>
|
||||
|
||||
IntHashNode::IntHashNode ( int HashInt, void * HashData)
|
||||
: next(NULL)
|
||||
{
|
||||
hashInt = HashInt;
|
||||
hashData = HashData;
|
||||
}
|
||||
|
||||
IntHashNode::~IntHashNode ( void )
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user