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

38 lines
807 B
C++
Raw Normal View History

2018-02-05 15:11:50 +01:00
#include "_ircaccount.hpp"
// namespace chatterino {
// namespace providers {
// namespace irc {
// IrcAccount::IrcAccount(const QString &_userName, const QString &_nickName, const QString
// &_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;
//}
//} // namespace irc
//} // namespace providers
//} // namespace chatterino