add more spacing
[personal-kdebase.git] / workspace / ksmserver / kcm / smserverconfigimpl.h
blob7b197566083270fa6349a4f6b41b83903a6c42ec
1 /***************************************************************************
2 smserverconfigimpl.h - description
3 -------------------
4 begin : Thu May 17 2001
5 copyright : (C) 2001 by stulle
6 email : stulle@tux
7 ***************************************************************************/
9 /***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
18 #ifndef SMSERVERCONFIGIMPL_H
19 #define SMSERVERCONFIGIMPL_H
21 #include <QWidget>
22 #include "ui_smserverconfigdlg.h"
24 /**
25 *@author stulle
28 class SMServerConfigDlg : public QWidget, public Ui::SMServerConfigDlg
30 public:
31 SMServerConfigDlg( QWidget *parent ) : QWidget( parent ) {
32 setupUi( this );
37 class SMServerConfigImpl : public SMServerConfigDlg {
38 Q_OBJECT
39 public:
40 SMServerConfigImpl(QWidget *parent=0);
41 ~SMServerConfigImpl();
42 public Q_SLOTS: // Public slots
43 /** No descriptions */
44 void configChanged();
45 Q_SIGNALS: // Signals
46 /** No descriptions */
47 void changed();
50 #endif