#ifndef EXAMPLEDOXY_HPP #define EXAMPLEDOXY_HPP /** * @brief ExampleDoxy ... short description ... * @author Urs Stotz <stotz@gmx.ch> * @date 2005-08-20 * ... description ... */ class ExampleDoxy { public: /** * Default constructor */ ExampleDoxy(); /** * Destructor */ virtual ~ExampleDoxy(); /** * Copy constructor * @param other Reference on object to copy. */ ExampleDoxy(const ExampleDoxy& other); /** * Assignment operator * @param other Reference on object to copy. * @return Reference on initialisated object. */ ExampleDoxy& operator=(const ExampleDoxy& other); private: }; #endif /* #ifndef EXAMPLEDOXY_HPP */