OOStuBS - Technische Informatik II (TI-II)  2.4
interruptmanager.h
gehe zur Dokumentation dieser Datei
1 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *\
2  * Technische Informatik II *
3  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
4  * *
5  * I N T E R R U P T _ M A N A G E R *
6  * *
7 \* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
8 
9 #ifndef __interrupt_manager_include__
10 #define __interrupt_manager_include__
11 
12 /* * * * * * * * * * * * * * * * * * * * * * * * *\
13 # INCLUDES #
14 \* * * * * * * * * * * * * * * * * * * * * * * * */
16 #include <machine/pic.h>
17 
18 /* * * * * * * * * * * * * * * * * * * * * * * * *\
19 # CLASSES #
20 \* * * * * * * * * * * * * * * * * * * * * * * * */
36  class InterruptManager : public InterruptStorage, public PIC{
37  public:
45  void assign(int iNum, InterruptHandler& handler);
46  };
47 
48 #endif