/* * StringView.hpp * * Created on: Dec 14, 2009 * Author: crueger */ #ifndef STRINGVIEW_HPP_ #define STRINGVIEW_HPP_ #include #include "Views/View.hpp" using namespace std; class StringView : public View { public: StringView(); virtual ~StringView(); virtual const string toString()=0; }; #endif /* STRINGVIEW_HPP_ */