tdesktop/Telegram/SourceFiles/data/data_stories_ids.h

33 lines
718 B
C
Raw Permalink Normal View History

/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.
For license and copyright information please follow this link:
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
*/
#pragma once
#include "data/data_abstract_sparse_ids.h"
class PeerData;
namespace Main {
class Session;
} // namespace Main
namespace Data {
2024-04-16 15:32:33 +00:00
using StoriesIdsSlice = AbstractSparseIds<std::vector<StoryId>>;
[[nodiscard]] rpl::producer<StoriesIdsSlice> SavedStoriesIds(
not_null<PeerData*> peer,
StoryId aroundId,
int limit);
[[nodiscard]] rpl::producer<StoriesIdsSlice> ArchiveStoriesIds(
2023-09-05 07:07:32 +00:00
not_null<PeerData*> peer,
StoryId aroundId,
int limit);
} // namespace Data