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