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

Uploaded
author m-zytnicki
date Mon, 29 Apr 2013 03:20:15 -0400
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SMART/Java/Python/Cpp/ncList.hpp	Mon Apr 29 03:20:15 2013 -0400
@@ -0,0 +1,20 @@
+#ifndef NC_LIST_HPP
+#define NC_LIST_HPP
+
+#include "table.hpp"
+
+class NCList {
+
+    private:
+        Table *h, *l;
+
+
+    public:
+
+        NCList (Table *h, Table *l): h(h), l(l) {}
+
+
+};
+
+#endif
+