Proof-reading - fixed one usage of the i18n plural form (it wasn't doing before,...
[kdeadmin.git] / kuser / ku_usersystem.h
blob0e7d85d54c7a1030b723fcb97cf3e2008def8baa
1 /*
2 * Copyright (c) 1998 Denis Perchine <dyp@perchine.com>
3 * Copyright (c) 2004 Szombathelyi György <gyurco@freemail.hu>
4 * Maintained by Adriaan de Groot <groot@kde.org>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details.
16 * You should have received a copy of the GNU Library General Public License
17 * along with this library; see the file COPYING.LIB. If not, write to
18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 * Boston, MA 02110-1301, USA.
20 **/
22 #ifndef _KU_USERSYSTEM_H_
23 #define _KU_USERSYSTEM_H_
25 #include "ku_user.h"
27 class KU_UserSystem : public KU_Users {
28 public:
29 KU_UserSystem(KU_PrefsBase *cfg);
30 virtual ~KU_UserSystem();
32 virtual bool dbcommit() { return true; }
33 virtual bool reload();
34 virtual void createPassword( KU_User & /*user*/, const QString & /*password*/ ) {}
36 private:
38 bool loadpwd();
39 bool loadsdw();
41 #endif // _KU_USERSYSTEM_H_