/* * MethodStringView.cpp * * Created on: Dec 14, 2009 * Author: crueger */ #include "MethodStringView.hpp" using namespace std; MethodStringView::MethodStringView(boost::function _displayMethod) : StringView(), displayMethod(_displayMethod) { // TODO Auto-generated constructor stub } MethodStringView::~MethodStringView() { // TODO Auto-generated destructor stub } const string MethodStringView::toString() { return displayMethod(); }