renamed "user" to "account"

This commit is contained in:
fourtf
2017-04-18 02:29:32 +02:00
parent 34b9057f7e
commit c2937eb7b3
15 changed files with 23 additions and 27 deletions
+27
View File
@@ -0,0 +1,27 @@
#ifndef IRCUSER_H
#define IRCUSER_H
#include <QString>
namespace chatterino {
class IrcUser2
{
public:
IrcUser2(const QString &userName, const QString &nickName, const QString &realName,
const QString &password);
const QString &getUserName() const;
const QString &getNickName() const;
const QString &getRealName() const;
const QString &getPassword() const;
private:
QString _userName;
QString _nickName;
QString _realName;
QString _password;
};
} // namespace chatterino
#endif // IRCUSER_H