Fix missing includes

This commit is contained in:
Berkus Decker 2017-11-22 05:36:58 +02:00 committed by Berkus Decker
parent 1bb38d5b12
commit e2970ccba2
3 changed files with 7 additions and 0 deletions

View File

@ -21,6 +21,9 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
#pragma once
#include "base/timer.h"
#include <QtCore/QObject>
#include "mtproto/rpc_sender.h"
#include "mtproto/core_types.h"
#include "core/single_timer.h"
#include "mtproto/sender.h"
#include "base/flat_map.h"

View File

@ -20,6 +20,9 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
*/
#pragma once
#include "stdafx.h"
#include <QApplication>
class UpdateChecker;
class Application : public QApplication {
Q_OBJECT

View File

@ -22,6 +22,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
#include <vector>
#include <deque>
#include <QSharedPointer>
#include "base/type_traits.h"
namespace base {