view SMART/Java/Python/Cpp/ncList.hpp @ 22:1e3f2c2657a3

Deleted selected files
author m-zytnicki
date Mon, 29 Apr 2013 03:26:07 -0400 (2013-04-29)
parents 94ab73e8a190
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