blob: 558fe5eb821e719db52611bf2a6f0bb4c3f7690c (
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 <hans.oischinger@kde-mail.net>, (C) 2004
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef KOMPOSETASKPREFSWIDGET_H
#define KOMPOSETASKPREFSWIDGET_H
#include <qdockarea.h>
class KomposeTaskWidget;
/**
@author Hans Oischinger
*/
class KomposeTaskPrefsWidget : public QDockArea
{
Q_OBJECT
public:
KomposeTaskPrefsWidget(KomposeTaskWidget *parent = 0, const char *name = 0);
~KomposeTaskPrefsWidget();
};
#endif
|