/* * triangle.hpp * * Created on: Oct 18, 2010 * Author: mike * for use in Yale course CPSC 427a, Fall 2010 */ #pragma once #include "dict.hpp" #include "word.hpp" class Triangle : public Dictionary { private: public: void build(Dictionary& dict); ostream& printOneTriangle(ostream& out, const WordEntry& start) const; ostream& print(ostream& out) const; };