Subversion Repositories Projects

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1901 - 1
/*
2
 * DisplayManager.h
3
 *
4
 * Created: 06.03.2013 11:28:35
5
 *  Author: Peter
6
 */
7
#ifndef DISPLAYMANAGER_H_
8
#define DISPLAYMANAGER_H_
9
/* includes ------------------------------------------------------------*/
10
        #include <avr/io.h>
11
/* defines -------------------------------------------------------------*/
12
/* class begin ---------------------------------------------------------*/
13
class DisplayManager
14
{
15
/* public --------------------------------------------------------------*/
16
        public:
17
/* public declarations -------------------------------------------------*/
18
/* member declarations -------------------------------------------------*/
19
/* constructor ---------------------------------------------------------*/
20
        DisplayManager();
21
/* destructor ----------------------------------------------------------*/
22
        ~DisplayManager();
23
/* private: ------------------------------------------------------------*/
24
        private:
25
/* private declarations ------------------------------------------------*/
26
/* protected: ----------------------------------------------------------*/
27
        protected:
28
/* class end -----------------------------------------------------------*/
29
};
30
#endif /* DISPLAYMANAGER_H_ */
31
/*
32
 *      EOF / DisplayManager.h
33
 */