2017-04-12 17:46:44 +02:00
|
|
|
#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;
|
|
|
|
};
|
2017-04-14 17:52:22 +02:00
|
|
|
} // namespace chatterino
|
2017-04-12 17:46:44 +02:00
|
|
|
|
|
|
|
#endif // IRCUSER_H
|