/* * Project: MoleCuilder * Description: creates and alters molecular systems * Copyright (C) 2010 University of Bonn. All rights reserved. * Please see the LICENSE file or "Copyright notice" in builder.cpp for details. */ /* * MethodStringView.cpp * * Created on: Dec 14, 2009 * Author: crueger */ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include "CodePatterns/MemDebug.hpp" #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(); }