OOStuBS - Technische Informatik II (TI-II)  2.4
appl.h
gehe zur Dokumentation dieser Datei
1 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *\
2  * Technische Informatik II *
3  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
4  * *
5  * A P P L I C A T I O N *
6  * *
7 \* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
8 
9 #ifndef __application_include__
10 #define __application_include__
11 
12 #include "thread/customer.h"
13 
19 class Application : public Customer{
20  public:
25  virtual void action ()=0;
26 };
27 
28 #endif