view SMART/Java/Python/Cpp/ncList.hpp @ 24:452e051f6562

Deleted selected files
author m-zytnicki
date Mon, 29 Apr 2013 03:28:24 -0400
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