blob: 97db114626b2f01c2ecf91c25f0955dc3268f663 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
//
// C++ Interface: komposetaskprefswidget
//
// Description:
//
//
// Author: Hans Oischinger <[email protected]>, (C) 2004
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef KOMPOSETASKPREFSWIDGET_H
#define KOMPOSETASKPREFSWIDGET_H
#include <tqdockarea.h>
class KomposeTaskWidget;
/**
@author Hans Oischinger
*/
class KomposeTaskPrefsWidget : public TQDockArea
{
TQ_OBJECT
public:
KomposeTaskPrefsWidget(KomposeTaskWidget *parent = 0, const char *name = 0);
~KomposeTaskPrefsWidget();
};
#endif
|