19 lines
402 B
C++
19 lines
402 B
C++
// SPDX-FileCopyrightText: 2019 Contributors to Chatterino <https://chatterino.com>
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
// This file contains common forward declarations.
|
|
|
|
namespace chatterino {
|
|
class Channel;
|
|
class ChannelView;
|
|
using ChannelPtr = std::shared_ptr<Channel>;
|
|
|
|
struct Message;
|
|
using MessagePtr = std::shared_ptr<const Message>;
|
|
} // namespace chatterino
|