comparison SMART/Java/Python/Cpp/ncList.hpp @ 18:94ab73e8a190

Uploaded
author m-zytnicki
date Mon, 29 Apr 2013 03:20:15 -0400
parents
children
comparison
equal deleted inserted replaced
17:b0e8584489e6 18:94ab73e8a190
1 #ifndef NC_LIST_HPP
2 #define NC_LIST_HPP
3
4 #include "table.hpp"
5
6 class NCList {
7
8 private:
9 Table *h, *l;
10
11
12 public:
13
14 NCList (Table *h, Table *l): h(h), l(l) {}
15
16
17 };
18
19 #endif
20