diff options
Diffstat (limited to 'td/telegram/CommunityManager.h')
| -rw-r--r-- | td/telegram/CommunityManager.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/td/telegram/CommunityManager.h b/td/telegram/CommunityManager.h index ce208caa0..56cd734bb 100644 --- a/td/telegram/CommunityManager.h +++ b/td/telegram/CommunityManager.h @@ -26,6 +26,11 @@ class Td; class CommunityManager final : public Actor { public: CommunityManager(Td *td, ActorShared<> parent); + CommunityManager(const CommunityManager &) = delete; + CommunityManager &operator=(const CommunityManager &) = delete; + CommunityManager(CommunityManager &&) = delete; + CommunityManager &operator=(CommunityManager &&) = delete; + ~CommunityManager() final; bool have_community(CommunityId community_id) const; |
