mirror of https://github.com/procxx/kepka.git
Fix missing includes
This commit is contained in:
parent
1bb38d5b12
commit
e2970ccba2
|
@ -21,6 +21,9 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "base/timer.h"
|
#include "base/timer.h"
|
||||||
|
#include <QtCore/QObject>
|
||||||
|
#include "mtproto/rpc_sender.h"
|
||||||
|
#include "mtproto/core_types.h"
|
||||||
#include "core/single_timer.h"
|
#include "core/single_timer.h"
|
||||||
#include "mtproto/sender.h"
|
#include "mtproto/sender.h"
|
||||||
#include "base/flat_map.h"
|
#include "base/flat_map.h"
|
||||||
|
|
|
@ -20,6 +20,9 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include "stdafx.h"
|
||||||
|
#include <QApplication>
|
||||||
|
|
||||||
class UpdateChecker;
|
class UpdateChecker;
|
||||||
class Application : public QApplication {
|
class Application : public QApplication {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
|
@ -22,6 +22,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
|
||||||
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <deque>
|
#include <deque>
|
||||||
|
#include <QSharedPointer>
|
||||||
#include "base/type_traits.h"
|
#include "base/type_traits.h"
|
||||||
|
|
||||||
namespace base {
|
namespace base {
|
||||||
|
|
Loading…
Reference in New Issue