blob: 090622eace3d6adc5a0b2d19e05feebea85122a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef QUEUE_WIDGET_H
#define QUEUE_WIDGET_H
#include <ktabwidget.h>
class QueueWidget: public KTabWidget
{
TQ_OBJECT
public:
QueueWidget();
~QueueWidget();
};
#endif // QUEUE_WIDGET_H
|