mirror-chatterino2/src/ForwardDecl.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
282 B
C++
Raw Normal View History

2019-09-04 00:29:58 +02:00
#pragma once
#include <memory>
2019-09-19 12:19:50 +02:00
// This file contains common forward declarations.
2019-09-04 00:29:58 +02:00
namespace chatterino {
class Channel;
class ChannelView;
using ChannelPtr = std::shared_ptr<Channel>;
2019-09-04 00:29:58 +02:00
struct Message;
using MessagePtr = std::shared_ptr<const Message>;
} // namespace chatterino