move around files

This commit is contained in:
Rasmus Karlsson
2017-06-06 14:48:14 +02:00
parent 71f64cd6ff
commit ccf8e3bd83
148 changed files with 115 additions and 107 deletions
+33
View File
@@ -0,0 +1,33 @@
#include "ircaccount.h"
namespace chatterino {
IrcUser2::IrcUser2(const QString &userName, const QString &nickName, const QString &realName,
const QString &password)
: _userName(userName)
, _nickName(nickName)
, _realName(realName)
, _password(password)
{
}
const QString &IrcUser2::getUserName() const
{
return _userName;
}
const QString &IrcUser2::getNickName() const
{
return _nickName;
}
const QString &IrcUser2::getRealName() const
{
return _realName;
}
const QString &IrcUser2::getPassword() const
{
return _password;
}
}