mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-06-05 06:33:57 +02:00
Added dummy API class for statistics.
This commit is contained in:
parent
10968d0da2
commit
c45025c6e5
3 changed files with 58 additions and 0 deletions
|
@ -152,6 +152,8 @@ PRIVATE
|
||||||
api/api_sensitive_content.h
|
api/api_sensitive_content.h
|
||||||
api/api_single_message_search.cpp
|
api/api_single_message_search.cpp
|
||||||
api/api_single_message_search.h
|
api/api_single_message_search.h
|
||||||
|
api/api_statistics.cpp
|
||||||
|
api/api_statistics.h
|
||||||
api/api_text_entities.cpp
|
api/api_text_entities.cpp
|
||||||
api/api_text_entities.h
|
api/api_text_entities.h
|
||||||
api/api_toggling_media.cpp
|
api/api_toggling_media.cpp
|
||||||
|
|
27
Telegram/SourceFiles/api/api_statistics.cpp
Normal file
27
Telegram/SourceFiles/api/api_statistics.cpp
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
/*
|
||||||
|
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
|
||||||
|
*/
|
||||||
|
#include "api/api_statistics.h"
|
||||||
|
|
||||||
|
#include "apiwrap.h"
|
||||||
|
#include "data/data_peer.h"
|
||||||
|
#include "main/main_session.h"
|
||||||
|
|
||||||
|
namespace Api {
|
||||||
|
namespace {
|
||||||
|
} // namespace
|
||||||
|
|
||||||
|
Statistics::Statistics(not_null<ApiWrap*> api)
|
||||||
|
: _api(&api->instance()) {
|
||||||
|
}
|
||||||
|
|
||||||
|
rpl::producer<> Statistics::request(
|
||||||
|
not_null<PeerData*> peer) const {
|
||||||
|
return rpl::never<>();
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace Api
|
29
Telegram/SourceFiles/api/api_statistics.h
Normal file
29
Telegram/SourceFiles/api/api_statistics.h
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
/*
|
||||||
|
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 "mtproto/sender.h"
|
||||||
|
|
||||||
|
class ApiWrap;
|
||||||
|
class PeerData;
|
||||||
|
|
||||||
|
namespace Api {
|
||||||
|
|
||||||
|
class Statistics final {
|
||||||
|
public:
|
||||||
|
explicit Statistics(not_null<ApiWrap*> api);
|
||||||
|
|
||||||
|
[[nodiscard]] rpl::producer<> request(
|
||||||
|
not_null<PeerData*> peer) const;
|
||||||
|
|
||||||
|
private:
|
||||||
|
MTP::Sender _api;
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace Api
|
Loading…
Add table
Reference in a new issue