Chatterino
ForwardDecl.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include <memory>
4 
5 // This file contains common forward declarations.
6 
7 namespace chatterino {
8 class Channel;
9 class ChannelView;
10 using ChannelPtr = std::shared_ptr<Channel>;
11 
12 struct Message;
13 using MessagePtr = std::shared_ptr<const Message>;
14 } // namespace chatterino
Definition: Application.cpp:48
std::shared_ptr< const Message > MessagePtr
Definition: Channel.hpp:18
std::shared_ptr< Channel > ChannelPtr
Definition: Channel.hpp:125