refactoring

This commit is contained in:
fourtf
2017-04-12 17:46:44 +02:00
parent 8ef492d7ae
commit 96db82e867
114 changed files with 5554 additions and 3703 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;
};
}
#endif // IRCUSER_H