aboutsummaryrefslogtreecommitdiff
path: root/include/Message.hpp
blob: a6edddf5052c779367f2f570d72f09ec910509a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

#include "User.hpp"
#include "Text.hpp"
#include <string>
#include <vector>

namespace dchat
{
    class Message
    {
    public:
        Message(User *user, const std::string &text);
        
        const User *user;
        Text text;
    };
}