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

18 lines
222 B
C++

#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