#pragma once // This file contains common forward declarations. namespace chatterino { class Channel; class ChannelView; using ChannelPtr = std::shared_ptr; struct Message; using MessagePtr = std::shared_ptr; } // namespace chatterino