#ifndef INCLUDED_TABLELINES_
#define INCLUDED_TABLELINES_

#include <ostream>

#include <bobcat/tablesupport>

namespace FBB
{

class TableLines: public TableSupport
{
    private:
        virtual void v_hline(size_t row) const;

        static void outLine(Field const &field,  std::ostream &out);
};

} // FBB        
#endif
