X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Ftypes.h;h=fc46881e1ccf11c08234ca6851453c27c8f54cb8;hp=104deb728a20ca343ddf96d890b07c5c212502ea;hb=80cd03dc284fecbac2b7db1ede215f82023b72d9;hpb=f824db0e31b54969e0b7fa0b5405b1e9173d482c diff --git a/src/common/types.h b/src/common/types.h index 104deb72..fc46881e 100644 --- a/src/common/types.h +++ b/src/common/types.h @@ -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