/* 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; namespace Window { class SessionController; } // namespace Window namespace Api { class ConfirmPhone final { public: explicit ConfirmPhone(not_null api); void resolve( not_null controller, const QString &phone, const QString &hash); private: MTP::Sender _api; mtpRequestId _sendRequestId = 0; mtpRequestId _checkRequestId = 0; }; } // namespace Api