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_LIST_CPP__
#define __NASAL_LIST_CPP__
nasal_list::nasal_list()
{
;
}
nasal_list::~nasal_list()
{
;
}
nasal_list& nasal_list::operator=(const nasal_list &temp)
{
return *this;
}
#endif