diff --git a/backends/libircclient-qt/session.h b/backends/libircclient-qt/session.h index 326ba4b4560000d04a507e3b67376379a616309d..1e1067ce280fd0e50f15e6a29e9ff4ab4f8523d4 100644 --- a/backends/libircclient-qt/session.h +++ b/backends/libircclient-qt/session.h @@ -27,6 +27,14 @@ public: std::string suffix; int rooms; + void setIdentify(const std::string &identify) { + m_identify = identify; + } + + const std::string &getIdentify() { + return m_identify; + } + protected Q_SLOTS: void on_connected(); void on_disconnected(); @@ -37,6 +45,7 @@ protected Q_SLOTS: protected: NetworkPlugin *np; std::string user; + std::string m_identify; virtual Irc::Buffer* createBuffer(const QString& receiver); };