Files
Nasal-Interpreter/version0.2/nasal_hash.cpp
Valk Richard Li c967a6980f new structure
2019-08-08 02:25:48 +08:00

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