new structure

This commit is contained in:
Valk Richard Li
2019-08-08 02:25:48 +08:00
committed by GitHub
parent fa39c6abc5
commit c967a6980f
14 changed files with 1257 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#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