#include "DoNothing.hh" #include DoNothing::DoNothing() { cout << "doing nothing!\n"; } DoNothing::~DoNothing() { cout << "doing nothing!\n"; } void DoNothing::foo(char* ch) { cout << ch << endl; }