aboutsummaryrefslogtreecommitdiff
path: root/src/User.cpp
blob: 6b07b5b40b06195d66cc14f5bea84db0ae5b868a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "../include/User.hpp"

namespace dchat
{
    OfflineUser::OfflineUser(const std::string &_name) : 
        name(_name)
    {
        
    }
    
    const std::string& OfflineUser::getName() const
    {
        return name;
    }
}