X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Ftypes.h;h=fc46881e1ccf11c08234ca6851453c27c8f54cb8;hp=07088184c40d1796c699794cd393394ca39577ac;hb=80cd03dc284fecbac2b7db1ede215f82023b72d9;hpb=850f5ae9b96c609f70cdb565bb19054131487714 diff --git a/src/common/types.h b/src/common/types.h index 07088184..fc46881e 100644 --- a/src/common/types.h +++ b/src/common/types.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel Project * + * Copyright (C) 2005-09 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -95,6 +95,10 @@ Q_DECLARE_METATYPE(NetworkId) Q_DECLARE_METATYPE(IdentityId) Q_DECLARE_METATYPE(AccountId) +// a few typedefs +typedef QList MsgIdList; +typedef QList BufferIdList; + //! Base class for exceptions. struct Exception { Exception(QString msg = "Unknown Exception") : _msg(msg) {}; @@ -103,7 +107,6 @@ struct Exception { protected: QString _msg; - }; #endif