/** * @module cdisplay * @author Guenther Neuwirth (0626638), Manuel Mausz (0728348) * @brief TODO * @date 10.05.2009 */ #ifndef CDISPLAY_H #define CDISPLAY_H #1 /** * @class CDisplay * * TODO */ class CDisplay { public: /** * @method CDisplay * @brief Default ctor * @param - * @return - * @globalvars none * @exception none * @conditions none */ CDisplay() {}; /** * @method ~CDisplay * @brief Default dtor * @param - * @return - * @globalvars none * @exception none * @conditions none */ ~CDisplay(); private: /* members */ }; #endif /* vim: set et sw=2 ts=2: */