1 /***************************************************************************
4 begin : Sat Mar 30 2002
5 copyright : (C) 2002 by Tim Jansen
7 ***************************************************************************/
9 /***************************************************************************
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. *
16 ***************************************************************************/
21 #include <KApplication>
28 const int INVITATION_DURATION
= 60*60;
34 Invitation(const KConfigGroup
&config
);
35 Invitation(const Invitation
&x
);
36 Invitation
&operator= (const Invitation
&x
);
38 bool operator == (const Invitation
&ot
);
40 QString
password() const;
41 QDateTime
expirationTime() const;
42 QDateTime
creationTime() const;
45 void save(KConfigGroup
&config
) const;
48 QDateTime m_creationTime
;
49 QDateTime m_expirationTime
;