#include "Example.hpp" // 2005-08-20 Urs Stotz <stotz@gmx.ch> Example::Example() { } Example::~Example() { // cleanup } Example::Example(const Example& other) { *this=other; } Example& Example::operator=(const Example& other) { if (this != &other){ // no self-assignmet // deep copy } return *this; }