| 123456789101112131415161718192021222324 |
- /*
- 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 "platform/mac/integration_mac.h"
- #include "platform/platform_integration.h"
- namespace Platform {
- namespace {
- class MacIntegration final : public Integration {
- };
- } // namespace
- std::unique_ptr<Integration> CreateIntegration() {
- return std::make_unique<MacIntegration>();
- }
- } // namespace Platform
|