source: molecuilder/src/Views/MethodStringView.cpp@ f3adfe

Last change on this file since f3adfe was 98a2987, checked in by Tillmann Crueger <crueger@…>, 16 years ago

Added -Wall flag and fixed several small hickups

  • Property mode set to 100644
File size: 471 bytes
Line 
1/*
2 * MethodStringView.cpp
3 *
4 * Created on: Dec 14, 2009
5 * Author: crueger
6 */
7
8#include "MethodStringView.hpp"
9
10using namespace std;
11
12MethodStringView::MethodStringView(boost::function<string()> _displayMethod) :
13StringView(),
14displayMethod(_displayMethod)
15{
16 // TODO Auto-generated constructor stub
17
18}
19
20MethodStringView::~MethodStringView()
21{
22 // TODO Auto-generated destructor stub
23}
24
25
26const string MethodStringView::toString() {
27 return displayMethod();
28}
Note: See TracBrowser for help on using the repository browser.