uint -> NetworkId, uint -> BufferId almost everywhere. Conversion will be made explic...
[quassel.git] / src / common / types.h
1 /***************************************************************************
2  *   Copyright (C) 2005-08 by the Quassel Project                          *
3  *   devel@quassel-irc.org                                                 *
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) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #ifndef _TYPES_H_
22 #define _TYPES_H_
23
24 #include <QString>
25
26 /*
27 class UnsignedId {
28     quint32 id;
29
30   public:
31     inline UnsignedId(int _id = 0) { id = _id; }
32     inline quint32 toInt() const { return id; }
33     inline bool operator==(const UnsignedId &other) const { return id == other.id; }
34     inline bool operator!=(const UnsignedId &other) const { return id != other.id; }
35 };
36
37 struct BufferId : public UnsignedId {
38   inline BufferId(int _id = 0) : UnsignedId(_id) {};
39
40 };
41 */
42
43 // FIXME make all ID types quint32 as soon as they all have been replaced
44 typedef uint UserId;     //!< Identifies a core user.
45 typedef uint MsgId;      //!< Identifies a message.
46 typedef uint BufferId;   //!< Identifies a buffer.
47 // These must be signed!
48 typedef qint32 NetworkId;  //!< Identifies an IRC Network.
49 typedef qint32 IdentityId; //!< Identifies an identity.
50
51 //! Base class for exceptions.
52 struct Exception {
53   Exception(QString msg = "Unknown Exception") : _msg(msg) {};
54   virtual ~Exception() {}; // make gcc happy
55   virtual inline QString msg() { return _msg; }
56
57   protected:
58     QString _msg;
59
60 };
61
62 #endif