integration_mac.mm 553 B

123456789101112131415161718192021222324
  1. /*
  2. This file is part of Telegram Desktop,
  3. the official desktop application for the Telegram messaging service.
  4. For license and copyright information please follow this link:
  5. https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
  6. */
  7. #include "platform/mac/integration_mac.h"
  8. #include "platform/platform_integration.h"
  9. namespace Platform {
  10. namespace {
  11. class MacIntegration final : public Integration {
  12. };
  13. } // namespace
  14. std::unique_ptr<Integration> CreateIntegration() {
  15. return std::make_unique<MacIntegration>();
  16. }
  17. } // namespace Platform