X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fstorage.h;h=c77e9ebf1f052acb4742514dba9aeb2bef6a584d;hp=d0f2ae37f3d3fffca474418ef720c9bc9b4e9788;hb=f932e5c8a0ec3ff689686a71c32ee61a428c4340;hpb=ed8a0fbbe0ba28bd321950c45e7bb5cd9249df2e diff --git a/src/core/storage.h b/src/core/storage.h index d0f2ae37..c77e9ebf 100644 --- a/src/core/storage.h +++ b/src/core/storage.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2016 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -442,6 +442,12 @@ public slots: */ virtual QList requestAllMsgs(UserId user, MsgId first = -1, MsgId last = -1, int limit = -1) = 0; + //! Get the auth username associated with a userId + /** \param user The user to retrieve the username for + * \return The username for the user + */ + virtual const QString getAuthusername(UserId user) = 0; + signals: //! Sent when a new BufferInfo is created, or an existing one changed somehow. void bufferInfoUpdated(UserId user, const BufferInfo &);