OOStuBS - Technische Informatik II (TI-II)  2.4
waitingroom.h
gehe zur Dokumentation dieser Datei
1 /*---------------------------------------------------------------------------*
2  * Technical Computer Science II *
3  *---------------------------------------------------------------------------*
4  * *
5  * W A I T I N G R O O M *
6  * *
7  *---------------------------------------------------------------------------*/
8 
9 #ifndef __waitingroom_header__
10 #define __waitingroom_header__
11 
12 /* * * * * * * * * * * * * * * * * * * * * * * * *\
13 # INCLUDES #
14 \* * * * * * * * * * * * * * * * * * * * * * * * */
15 
16 #include "common/queue.h"
17 
18 /* * * * * * * * * * * * * * * * * * * * * * * * *\
19 # CLASSES #
20 \* * * * * * * * * * * * * * * * * * * * * * * * */
21 
31 class Waitingroom : public Queue
32 {
33  public:
41  virtual ~Waitingroom();
42 };
43 
44 #endif