OSDN Git Service

26eb2bcf0d8e9ab6f0e44b1bc2cb82d874fc7068
[kita/kita.git] / kita / src / prefs / loginprefpage.h
1 /***************************************************************************
2  *   Copyright (C) 2004 by Kita Developers                                 *
3  *   ikemo@users.sourceforge.jp                                            *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  ***************************************************************************/
10 #ifndef KITALOGINPREFPAGE_H
11 #define KITALOGINPREFPAGE_H
12
13 #include "loginprefbase.h"
14
15 namespace Kita
16 {
17     /**
18     @author Hideki Ikemoto
19     */
20     class LoginPrefPage : public LoginPrefBase
21     {
22         Q_OBJECT
23     public slots:
24         void apply();
25     public:
26         LoginPrefPage( QWidget *parent = 0 );
27         ~LoginPrefPage();
28     signals:
29         void changed();
30     };
31 }
32
33 #endif