]> www.ginac.de Git - cln.git/blob - src/base/proplist/cl_pl_d.cc
* Adjusted dates and final touches for 1.1.1.
[cln.git] / src / base / proplist / cl_pl_d.cc
1 // class cl_property_list.
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cln/proplist.h"
8
9
10 // Implementation.
11
12 namespace cln {
13
14 cl_property_list::~cl_property_list ()
15 {
16         while (list) {
17                 var cl_property* l = list;
18                 list = l->next;
19                 delete l;
20         }
21 }
22
23 }  // namespace cln