mirror-chatterino2/src/ForwardDecl.hpp

11 lines
221 B
C++
Raw Normal View History

2019-09-04 00:29:58 +02:00
#pragma once
namespace chatterino {
class Channel;
class ChannelView;
using ChannelPtr = std::shared_ptr<Channel>;
struct Message;
using MessagePtr = std::shared_ptr<const Message>;
} // namespace chatterino