forked from xxq250/Nasal-Interpreter
18 lines
222 B
C++
18 lines
222 B
C++
#ifndef __NASAL_HASH_CPP__
|
|
#define __NASAL_HASH_CPP__
|
|
|
|
nasal_hash::nasal_hash()
|
|
{
|
|
;
|
|
}
|
|
nasal_hash::~nasal_hash()
|
|
{
|
|
;
|
|
}
|
|
nasal_hash& nasal_hash::operator=(const nasal_hash &temp)
|
|
{
|
|
return *this;
|
|
}
|
|
|
|
#endif
|