view 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 source

#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