mirror-chatterino2/src/providers/irc/IrcAccount.cpp

37 lines
721 B
C++
Raw Normal View History

2018-06-26 14:09:39 +02:00
#include "IrcAccount.hpp"
2018-02-05 15:11:50 +01:00
// namespace chatterino {
2018-06-26 16:37:59 +02:00
//
2018-08-06 21:17:03 +02:00
// IrcAccount::IrcAccount(const QString &_userName, const QString &_nickName,
// const QString
2018-02-05 15:11:50 +01:00
// &_realName,
// const QString &_password)
// : userName(_userName)
// , nickName(_nickName)
// , realName(_realName)
// , password(_password)
//{
//}
// const QString &IrcAccount::getUserName() const
//{
// return this->userName;
//}
// const QString &IrcAccount::getNickName() const
//{
// return this->nickName;
//}
// const QString &IrcAccount::getRealName() const
//{
// return this->realName;
//}
// const QString &IrcAccount::getPassword() const
//{
// return this->password;
//}
2018-06-26 16:37:59 +02:00
//
2018-02-05 15:11:50 +01:00
//} // namespace chatterino