/* * StringView.hpp * * Created on: Dec 14, 2009 * Author: crueger */ #ifndef STRINGVIEW_HPP_ #define STRINGVIEW_HPP_ #include #include "Views/View.hpp" using namespace std; /** * View to show something as a string * * This View is used by calling the toString method. * This View does *not* use the observer pattern. */ class StringView : public View { public: StringView(); virtual ~StringView(); virtual const string toString()=0; }; #endif /* STRINGVIEW_HPP_ */