From 45581d3d376e8deed84952cb838ae330549e5241 Mon Sep 17 00:00:00 2001 From: manuel Date: Tue, 12 May 2009 23:18:17 +0200 Subject: my cpu design --- ue3/mycpu/cdisplay.h | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 ue3/mycpu/cdisplay.h (limited to 'ue3/mycpu/cdisplay.h') diff --git a/ue3/mycpu/cdisplay.h b/ue3/mycpu/cdisplay.h new file mode 100644 index 0000000..629ec88 --- /dev/null +++ b/ue3/mycpu/cdisplay.h @@ -0,0 +1,48 @@ +/** + * @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: */ -- cgit v1.2.3