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

#include <vector>

namespace dchat
{
    class Channel;
    
    class ChannelSidePanel
    {
    public:
        void addChannel(Channel *channel);
    private:
        std::vector<Channel*> channels;
    };
}