blob: fc853bcebaf4406d41257b4829eed07d617ae8e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#include <irc/irc_user.hpp>
#include <iostream>
IrcUser::IrcUser(const std::string& name)
{
const std::string::size_type sep = name.find("!");
if (sep == std::string::npos)
{
if (name[0] == '@' || name[0] == '+')
this->nick = name.substr(1);
else
this->nick = name;
}
else
{
if (name[0] == '@' || name[0] == '+')
this->nick = name.substr(1, sep);
else
this->nick = name.substr(0, sep);
this->host = name.substr(sep+1);
}
std::cout << "Created user: [" << this->nick << "!" << this->host << std::endl;
}
|